Skip to content

Instantly share code, notes, and snippets.

@coreylight
Created August 11, 2017 19:56
Show Gist options
  • Save coreylight/3fc799c8c4fb82a883ed7785940c7629 to your computer and use it in GitHub Desktop.
Save coreylight/3fc799c8c4fb82a883ed7785940c7629 to your computer and use it in GitHub Desktop.
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