Created
April 20, 2022 19:31
-
-
Save mikesprague/f53c2280415b1f1c2d5137e32d4f6c84 to your computer and use it in GitHub Desktop.
Revisions
-
mikesprague created this gist
Apr 20, 2022 .There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,12 @@ const { hrtime } = process; (async () => { const debugStartTime = hrtime(); // do stuff const debugEndTime = hrtime(debugStartTime); console.log( `Execution time: ${debugEndTime[0] * 1000 + debugEndTime[1] / 1000000}ms`, ); })();