José Quiñones Flores 4564da0130 Added Laravel project and removed sensitive data | пре 4 година | |
---|---|---|
.. | ||
test | пре 4 година | |
.npmignore | пре 4 година | |
.testem.json | пре 4 година | |
.travis.yml | пре 4 година | |
LICENCE | пре 4 година | |
README.md | пре 4 година | |
index.js | пре 4 година | |
package.json | пре 4 година | |
seed.js | пре 4 година |
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