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
| var start = new Date(); | |
| var hrstart = process.hrtime(); | |
| setTimeout(function (argument) { | |
| // execution time simulated with setTimeout function | |
| var end = new Date() - start, | |
| hrend = process.hrtime(hrstart); | |
| console.info("Execution time: %dms", end); | |
| console.info("Execution time (hr): %ds %dms", hrend[0], hrend[1]/1000000); |