natron-hrtime-format
v0.2.0-beta.1
Published
High-Resolution Time Format
Downloads
3
Readme
High-Resolution Time Format
This module is part of Natron and contains
formatting utilities for process.hrtime
.
Documentation
See the documentation for natron-hrtime-format
Usage
import {format} from "natron-hrtime-format";
let start = process.hrtime();
setTimeout(() => {
let end = process.hrtime(start);
console.log(format(end));
}, Math.random() * 2000);