Created
March 5, 2018 17:36
-
-
Save jkantr/bbf117c06fdbfdd705c545b63e12421c to your computer and use it in GitHub Desktop.
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
module.exports = { | |
startTimer() { | |
return process.hrtime() | |
}, | |
stopTimer(timer) { | |
const [s, ns] = process.hrtime(timer) | |
return ((s * 1e9) + ns) / 1e6 | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment