Created
December 16, 2020 20:54
-
-
Save antelle/0c8210fe38a88c99afb9a9424d34af38 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const started = process.hrtime(); | |
// something | |
const elapsed = process.hrtime(started); | |
const elapsedMs = Math.round(elapsed[0] * 1e3 + elapsed[1] / 1e6); | |
console.log(`Elapsed ${elapsedMs} ms`); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment