1.0.3 • Published 8 years ago
@segment/isodate v1.0.3
isodate
Parse an ISO date string into a Date. Works cross-browser, even in the old, dumb ones ;)
Installation
$ npm install @segment/isodateExample
var isodate = require('isodate');
var date = isodate.parse('2013-09-04T00:57:26.434Z');
date.toISOString(); // "2013-09-04T00:57:26.434Z"var isodate = require('isodate');
isodate.is('2013-09-04T00:57:26.434Z'); // true
isodate.is('string'); // falseAPI
.parse(string)
Parse the given ISO date string into a native Date object.
.is(string, strict)
Check if the given string is an ISO date string. strict mode will return false for strings without a year, month and date; for example 2013 would be false.