Created
May 16, 2017 13:47
-
-
Save DKunin/3624a9ca879b9325c3b78c157fc2a58f to your computer and use it in GitHub Desktop.
Performance measure
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
performance.mark('costlyFunction Start') | |
costlyFunction() | |
performance.mark('costlyFunction End') | |
performance.measure( | |
'costlyFunction', | |
'costlyFunction Start', | |
'costlyFunction End' | |
) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment