Created
August 11, 2017 19:56
-
-
Save coreylight/3fc799c8c4fb82a883ed7785940c7629 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 startTime = process.hrtime(); | |
await runTheDatabaseCall(); | |
const endTime = process.hrtime(startTime); | |
console.log(endTime); | |
// [ 8, 210181641 ] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment