Skip to content

Instantly share code, notes, and snippets.

@coreylight
Created August 11, 2017 20:45
Show Gist options
  • Save coreylight/c29023af58b2744b3abfe521c806c3a7 to your computer and use it in GitHub Desktop.
Save coreylight/c29023af58b2744b3abfe521c806c3a7 to your computer and use it in GitHub Desktop.
// 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