@mantine/dates
Version:
Calendars, date and time pickers based on Mantine components
21 lines (18 loc) • 539 B
JavaScript
'use client';
import dayjs from 'dayjs';
function getYearsData(decade) {
const year = dayjs(decade).year();
const rounded = year - year % 10;
let currentYearIndex = 0;
const results = [[], [], [], []];
for (let i = 0; i < 4; i += 1) {
const max = i === 3 ? 1 : 3;
for (let j = 0; j < max; j += 1) {
results[i].push(dayjs(new Date(rounded + currentYearIndex, 0)).format("YYYY-MM-DD"));
currentYearIndex += 1;
}
}
return results;
}
export { getYearsData };
//# sourceMappingURL=get-years-data.mjs.map