1.0.3 • Published 8 months ago

fn-date-range v1.0.3

Weekly downloads
-
License
MIT
Repository
-
Last release
8 months ago

FN Date Range

How does it work?

  • No string manipulation. Calculation is based on MS

Return Type

// 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"];

Installation

npm i fn-date-range
  • Signature

(end: number, start: number = 0) => string[];
  • Usage

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);

License

MIT

1.0.3

8 months ago

1.0.2

1 year ago

1.0.1

1 year ago

1.0.0

1 year ago