UNPKG

underscore-es

Version:

javaScript's functional programming helper library for ES6 and beyond.

9 lines (7 loc) 236 B
// `_now` : an utility's function // ------------------------------- // A (possibly faster) way to get the current timestamp as an integer. var _now = Date.now || function () { return new Date().getTime(); } export {_now as default};