2015-07-24 19:47:36 +02:00

7 lines
118 B
JavaScript

var Common = module.exports = {};
Common.getDate = function getDate() {
return Math.round(Date.now() / 1000);
};