You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

is-time-value.js 208B

123456789
  1. "use strict";
  2. module.exports = function (value) {
  3. try { value = Number(value); }
  4. catch (e) { return false; }
  5. if (isNaN(value)) return false;
  6. if (Math.abs(value) > 8.64e15) return false;
  7. return true;
  8. };