Created
July 30, 2021 12:33
-
-
Save extrimua/10bf3f8cc273c31fd1f79fff5e118b6b to your computer and use it in GitHub Desktop.
Execution Timer
This file contains 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 hrstart = process.hrtime() | |
//some code which takes time | |
const hrend = process.hrtime(hrstart) | |
console.info("Execution time (hr): %ds %dms", hrend[0], hrend[1] / 1000000); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment