José Quiñones Flores 4564da0130 Added Laravel project and removed sensitive data | il y a 4 ans | |
---|---|---|
.. | ||
test | il y a 4 ans | |
.npmignore | il y a 4 ans | |
.testem.json | il y a 4 ans | |
.travis.yml | il y a 4 ans | |
LICENCE | il y a 4 ans | |
README.md | il y a 4 ans | |
index.js | il y a 4 ans | |
package.json | il y a 4 ans | |
seed.js | il y a 4 ans |
A requirable version of Date.now()
Use-case is to be able to mock out Date.now() using require interception.
var now = require("date-now")
var ts = now()
var ts2 = Date.now()
assert.equal(ts, ts2)
var now = require("date-now/seed")(timeStampFromServer)
// ts is in "sync" with the seed value from the server
// useful if your users have their local time being a few minutes
// out of your server time.
var ts = now()
npm install date-now