UNPKG

clvm_tools

Version:

Javascript implementation of clvm_tools

10 lines (9 loc) 286 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.now = void 0; // eslint-disable-next-line @typescript-eslint/no-var-requires const { performance } = require("perf_hooks"); function now() { return performance.now() / 1000.0; } exports.now = now;