Show More
Commit Description:
prevent multiple place login using uuid cookie
Commit Description:
prevent multiple place login using uuid cookie
References:
File last commit:
Show/Diff file:
Action:
node_modules/es5-ext/date/ensure-time-value.js
| 10 lines
| 325 B
| application/javascript
| JavascriptLexer
|
r789 | "use strict"; | |||
var safeToString = require("../safe-to-string") | ||||
, toInteger = require("../number/to-integer") | ||||
, isTimeValue = require("./is-time-value"); | ||||
module.exports = function (value) { | ||||
if (isTimeValue(value)) return toInteger(value); | ||||
throw new TypeError(safeToString(value) + " is not a valid time value"); | ||||
}; | ||||