UNPKG

@grafana/faro-core

Version:
15 lines 441 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.dateNow = dateNow; exports.getCurrentTimestamp = getCurrentTimestamp; exports.timestampToIsoString = timestampToIsoString; function dateNow() { return Date.now(); } function getCurrentTimestamp() { return new Date().toISOString(); } function timestampToIsoString(value) { return new Date(value).toISOString(); } //# sourceMappingURL=date.js.map