UNPKG

@splitsoftware/splitio-commons

Version:
10 lines (9 loc) 278 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.now = void 0; function now() { // eslint-disable-next-line no-undef var time = process.hrtime(); return time[0] * 1e3 + time[1] * 1e-6; // convert it to millis } exports.now = now;