UNPKG

mindful-commons

Version:

10 lines 439 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.getUtcTimestamp = void 0; var getUtcTimestamp = function () { var now = new Date(); var utcTimestamp = Date.UTC(now.getFullYear(), now.getMonth(), now.getDate(), now.getHours(), now.getMinutes(), now.getSeconds(), now.getMilliseconds()); return utcTimestamp; }; exports.getUtcTimestamp = getUtcTimestamp; //# sourceMappingURL=date.util.js.map