flocore/util/time.js
Ryan X. Charles ca67786a77 ran js-beautify on all bitcore source
js-beautify -s 2 -r *.js

...did not run on bundles, only on source.
2014-06-23 10:57:02 -07:00

5 lines
109 B
JavaScript

// current time, in seconds
exports.curtime = function curtime() {
return Math.round(Date.now() / 1000);
}