JSPM

@segment/isodate

1.0.3
  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 897625
  • Score
    100M100P100Q196621F
  • License SEE LICENSE IN LICENSE

Parse an ISO date string into a Date

Package Exports

  • @segment/isodate

This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (@segment/isodate) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

Readme

isodate

CircleCI Codecov

Parse an ISO date string into a Date. Works cross-browser, even in the old, dumb ones ;)

Installation

$ npm install @segment/isodate

Example

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'); // false

API

.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.