backoffice/node_modules/date-now
root ab9f8bb658 first commit 2020-02-06 10:09:39 +00:00
..
test first commit 2020-02-06 10:09:39 +00:00
.npmignore first commit 2020-02-06 10:09:39 +00:00
.testem.json first commit 2020-02-06 10:09:39 +00:00
.travis.yml first commit 2020-02-06 10:09:39 +00:00
LICENCE first commit 2020-02-06 10:09:39 +00:00
README.md first commit 2020-02-06 10:09:39 +00:00
index.js first commit 2020-02-06 10:09:39 +00:00
package.json first commit 2020-02-06 10:09:39 +00:00
seed.js first commit 2020-02-06 10:09:39 +00:00

README.md

date-now

build status

browser support

A requirable version of Date.now()

Use-case is to be able to mock out Date.now() using require interception.

Example

var now = require("date-now")

var ts = now()
var ts2 = Date.now()
assert.equal(ts, ts2)

example of seed

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()

Installation

npm install date-now

Contributors

  • Raynos

MIT Licenced