UNPKG

nowsecs

Version:

Adds Date.nowSecs() to get current time in seconds

9 lines (8 loc) 166 B
if (!Date.now) { Date.now = function() { return (new Date()).getTime(); }; } Date.nowSecs = function() { return Math.floor(Date.now() / 1000); };