jesterday
v1.1.1
Published
Small library for keeping sanity when dealing with JavaScript Date
Downloads
4
Readme
jesterday
Contents
Utility functions for managing dates, e.g. adding, subtracting dates, accessing start/end of week, month, etc.
Documentation
Full documentation hosted on github pages.
Highlights
- API focused on Functional Programming and immutability
- Small size
- Month indexing starts from 1 (seriously it's a big deal!)
User Guide
Install as dependency: npm i jesterday --save
Import functions and have fun :)
import { add, endOf, now } from 'jesterday'
const currentDate = now()
const endOfNextMonth = endOf('month', add(1, 'month', currentDate))