Created
February 24, 2017 07:40
-
-
Save ivarconr/75c7acfe152a22956e02fb6c2ee9067a 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
'use strict'; | |
function start () { | |
const startTime = process.hrtime(); | |
return () => { | |
const elapsed = process.hrtime(startTime); | |
return elapsed[0] * 1e9 + elapsed[1]; | |
}; | |
} | |
module.exports = { start }; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment