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

Made by Antonio Ramirez

regex-utc-date

1.1.0

@yoshuawuyts

npmHomeRepoSnykSocket
Downloads:0
$ npm install regex-utc-date
DailyWeeklyMonthlyYearly

regex-utc-date

NPM version build status Test coverage Downloads

Regular expression for UTC date.

Installation

npm install regex-utc-date

Usage

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

regex().test('Sun, 07 Dec 2014 09:44:50 GMT');
// => true

var match = regex().exec('Sun, 07 Dec 2014 09:44:50 GMT');
match[0] // => 'Sun, 07 Dec 2014 09:44:50 GMT'
match[1] // => 'Sun'
match[2] // => '07'
match[3] // => 'Dec'
match[4] // => '2014'
match[5] // => '09:44:50'
match[6] // => '09'
match[7] // => '44'
match[8] // => '50'

Contributors

  • Yoshua Wuyts
  • Hugh Kennedy
  • Jon Schlinkert

See Also

  • Date.prototype.toUTCString()

License

MIT