Files
browser-wakatime/assets/js/helpers/currentTimestamp.js
2015-06-04 00:48:31 +02:00

9 lines
140 B
JavaScript

/**
* Returns UNIX timestamp
*
* @return integer
*/
export default function(){
return Math.round((new Date()).getTime() / 1000);
}