// Date Format: DayName MonthName Date Year --->>> Tue May 07 2024
["Tue May 07 2024", "Wed May 08 2024", "Thu May 09 2024", ..., "Thu May 16 2024", "Fri May 17 2024"];
npm i fn-date-range
(end: number, start: number = 0) => string[];
import getDatesInRange from 'fn-date-range';
// dates of the next 90 days
const tomorrow = getDatesInRange(90);
// dates of the last 30 days
const past = getDatesInRange(0, -30);
// dates of the last 30 and next 90 days
const range = getDatesInRange(90, -30);
MIT