@stencila/jesta
Version:
Stencila plugin for executable documents using JavaScript
12 lines (11 loc) • 320 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.seconds = exports.start = void 0;
const start = () => {
return process.hrtime.bigint();
};
exports.start = start;
const seconds = (start) => {
return Number(process.hrtime.bigint() - start) / 1e9;
};
exports.seconds = seconds;