Simple Date.now()
polyfill for old browsers and node.
$ npm install datenow
import now from 'datenow';
let timestamp = now();
// => 1487622014639
To polyfill Date.now()
function.
Date.now = Date.now || require('datenow');
$ npm install
$ npm test