Creates a new Date, but accepts a few more input types than normal.
npm install new-date

Create a new Date, accepting more input types than normal, like Unix timestamps.
``js`
$ npm install new-date
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
`js
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');
``