new-date
v1.0.3
Published
Creates a new Date, but accepts a few more input types than normal.
Downloads
2,412,370
Readme
new-date
Create a new Date, accepting more input types than normal, like Unix timestamps.
Installation
$ npm install new-date
API
newDate(Date|String|Number)
Returns a new Date object created from the input. The input can be:
- Date objects
- date strings
- millisecond numbers
- second numbers
- millisecond strings
- second strings
var newDate = require('new-date');
newDate(new Date);
newDate('Wed, 09 Aug 1995 00:00:00 GMT');
newDate('Aug 9, 1995');
newDate('2011-10-10T14:48:00');
newDate(1363288923637);
newDate(1363288923);
newDate('1363288923637');
newDate('1363288923');