npm stats
  • Search
  • About
  • Repo
  • Sponsor
  • more
    • Search
    • About
    • Repo
    • Sponsor

Made by Antonio Ramirez

regex-iso-date

1.0.0

@yoshuawuyts

npmHomeRepoSnykSocket
Downloads:510
$ npm install regex-iso-date
DailyWeeklyMonthlyYearly

regex-iso-date

NPM version build status Test coverage Downloads

Regular expression for ISO date.

Installation

npm install regex-iso-date

Usage

var regex = require('regex-iso-date');

regex().test('2011-10-05T14:48:00.000Z');
// => true

var match = regex().exec('2011-10-05T14:48:00.000Z');
match[0] // => '2011-10-05T14:48:00.000Z'
match[1] // => '2011'
match[2] // => '10'
match[3] // => '05'
match[4] // => '14:48:00'
match[5] // => '14'
match[6] // => '48'
match[7] // => '00'
match[8] // => '000'

Contributors

  • Yoshua Wuyts
  • Hugh Kennedy
  • Jon Schlinkert

See Also

  • Date.prototype.toISOString()

License

MIT