index.js 84 B

1234
  1. 'use strict';
  2. module.exports = function (str) {
  3. return !isNaN(Date.parse(str));
  4. };