Skip to content

Instantly share code, notes, and snippets.

@coreylight
Created August 11, 2017 20:14
Show Gist options
  • Save coreylight/8c4b26fc536a96143fb227f21f1b7145 to your computer and use it in GitHub Desktop.
Save coreylight/8c4b26fc536a96143fb227f21f1b7145 to your computer and use it in GitHub Desktop.
function hrMillis(measure) {
return (measure[0] * 1000) + (measure[1] / 1e6);
}
const millis = hrMillis(endTime);
console.log(millis);
// 8210.181641
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment