Package Exports
- date-fns/package.json
- date-fns/src/add_days
- date-fns/src/each_day
- date-fns/src/end_of_week
- date-fns/src/is_today
- date-fns/src/is_weekend
- date-fns/src/start_of_day
- date-fns/src/start_of_month
- date-fns/src/start_of_week
- date-fns/src/sub_days
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (date-fns) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
date-fns
Date helpers in function-per-file style.
API
Code is fully documented, checkout source for reference.
isWeekend
- is passed date is weekend?isToday
- is passed date is today?startOfDay
- returns start of a day for passed dateendOfDay
- returns end of a day for passed datestartOfWeek
- returns start of a week for passed dateendOfWeek
- returns end of a week for passed datestartOfMonth
- returns start of a month for passed dateendOfMonth
- returns end of a month for passed dateeachDay
- returns array of dates within specified rangeaddDays
- add specified number of days to passed datesubDays
- substract specified number of days from passed date