Skip to content

Instantly share code, notes, and snippets.

@ivarconr
Created February 24, 2017 07:40
Show Gist options
  • Save ivarconr/75c7acfe152a22956e02fb6c2ee9067a to your computer and use it in GitHub Desktop.
Save ivarconr/75c7acfe152a22956e02fb6c2ee9067a to your computer and use it in GitHub Desktop.
'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