Created
August 11, 2017 20:45
-
-
Save coreylight/c29023af58b2744b3abfe521c806c3a7 to your computer and use it in GitHub Desktop.
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
// for browsers, ya silly! | |
performance.mark('start-party'); | |
runThePartyAnimation(); | |
performance.mark('end-party'); | |
performance.measure('party-measure', 'start-party', 'end-party'); | |
const measure = performance.getEntriesByType('measure')[0]; | |
console.log(measure); | |
// {duration: 4296.19499999978, entryType: 'measure', name: 'party-measure', startTime: 254359.29} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment