date-super

1.0.4 • Public • Published

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

Package Sidebar

Install

npm i date-super

Weekly Downloads

3

Version

1.0.4

License

ISC

Unpacked Size

2.14 kB

Total Files

3

Last publish

Collaborators

  • vijithbk