UNPKG

@stencila/jesta

Version:

Stencila plugin for executable documents using JavaScript

12 lines (11 loc) 320 B
"use strict"; 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;