1.0.4 • Published 4 years ago

date-super v1.0.4

Weekly downloads
4
License
ISC
Repository
github
Last release
4 years ago

date-super

date-super provides method to find the number of days between 2 dates in a browser and inside nodejs.

date-super exposes a method daysBetween(date1, date2). Both the arguments should be date objects.

var dateSuper = require("date-super");
var date1 = new Date("01/30/2001");
var date2 = new Date("02/30/2001");

var days = daysBetween(date1, date2);
console.log(days)

The library is available as an npm package. To install the package run:

npm install date-super --save
# or with yarn
yarn add date-super

Docs

For any queries please email to: vijubalak@gmail.com

License

MIT © Vijith BK