flocore/util/time.js
2014-01-16 06:21:35 -03:00

8 lines
111 B
JavaScript

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