Builds a descending list of Persian years (with their approximate Gregorian equivalents).
minimumYearInList
tillYearsFromNow
The earliest Persian year to include in the list. Defaults to 1350.
1350
Number of additional years to include beyond the current Persian year. Defaults to 0.
0
An array of ManufactureYear objects containing Persian and Gregorian year mappings.
ManufactureYear
const years = buildYears();console.log(years[0]);// { text: "1404 - 2025", value: "1404", gregorianValue: "2025" } Copy
const years = buildYears();console.log(years[0]);// { text: "1404 - 2025", value: "1404", gregorianValue: "2025" }
const years = buildYears(1390, 2);console.log(years[0]);// { text: "1406 - 2027", value: "1406", gregorianValue: "2027" } Copy
const years = buildYears(1390, 2);console.log(years[0]);// { text: "1406 - 2027", value: "1406", gregorianValue: "2027" }
Builds a descending list of Persian years (with their approximate Gregorian equivalents).
minimumYearInListand can extend into the future withtillYearsFromNow.