José Quiñones Flores 4564da0130 Added Laravel project and removed sensitive data | 4 anni fa | |
---|---|---|
.. | ||
test | 4 anni fa | |
.npmignore | 4 anni fa | |
.testem.json | 4 anni fa | |
.travis.yml | 4 anni fa | |
LICENCE | 4 anni fa | |
README.md | 4 anni fa | |
index.js | 4 anni fa | |
package.json | 4 anni fa | |
seed.js | 4 anni fa |
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