Skip to content

Instantly share code, notes, and snippets.

@extrimua
Created July 30, 2021 12:33
Show Gist options
  • Save extrimua/10bf3f8cc273c31fd1f79fff5e118b6b to your computer and use it in GitHub Desktop.
Save extrimua/10bf3f8cc273c31fd1f79fff5e118b6b to your computer and use it in GitHub Desktop.
Execution Timer
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