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
### Keybase proof | |
I hereby claim: | |
* I am dougmartin on github. | |
* I am dougmartin (https://keybase.io/dougmartin) on keybase. | |
* I have a public key whose fingerprint is 88D1 46BB EC4C 7545 8CBF 395E 6DE6 5F37 27A0 3471 | |
To claim this, I am signing this object: |
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
/* | |
example: | |
const startTime = Date.now(); | |
... some long computation ... | |
const elapsedInMS = Date.now() - startTime; | |
console.log(formattedElapsedTime(elapsedInMS, 3)); | |
*/ |