Created
November 9, 2018 09:18
-
-
Save hyzhak/6b4bfcf29b9172d421496183b32e482e to your computer and use it in GitHub Desktop.
short but useful function to measure performance of function in node.js
This file contains 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 perf(fn) { console.time('x'); fn(); console.timeEnd('x');} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
usage:
result: