Loupi / convert-hrtime

Convert the result of `process.hrtime()` to seconds, milliseconds, nanoseconds (commonjs)

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

convert-hrtime

Convert the result of process.hrtime.bigint() to seconds, milliseconds, nanoseconds

Install

$ npm install convert-hrtime

Usage

import convertHrtime from 'convert-hrtime';

const startTime = process.hrtime.bigint();
expensiveCalculation();
const diff = process.hrtime.bigint() - startTime;

convertHrtime(diff);
//=> {seconds: 0.000002399, milliseconds: 0.002399, nanoseconds: 2399n}

About

Convert the result of `process.hrtime()` to seconds, milliseconds, nanoseconds (commonjs)

License:MIT License


Languages

Language:JavaScript 67.1%Language:TypeScript 32.9%