rm-logging
Version:
shell logging wrapper for node.js
12 lines • 337 B
JavaScript
Object.defineProperty(exports, "__esModule", { value: true });
const Moment = require("moment");
function current() {
return Moment.now();
}
exports.current = current;
function currentAsUnix() {
return Moment.now().valueOf();
}
exports.currentAsUnix = currentAsUnix;
//# sourceMappingURL=timestamp.js.map
;