Created
August 11, 2017 20:14
-
-
Save coreylight/8c4b26fc536a96143fb227f21f1b7145 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
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