-
-
Save yoshuawuyts/aa83785c71149e84393a73677204059b to your computer and use it in GitHub Desktop.
key RUM perf metric: time-to-first-jank
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
if (window.requestAnimationFrame) { | |
function checkForJank () { // eslint-disable-line no-inner-delcarations | |
const frameStart = Date.now() | |
window.requestAnimationFrame(() => { | |
const frameDuration = Date.now() - frameStart | |
if (frameDuration > 17) { | |
Perf.log(FirstJank) | |
} else { | |
checkForJank() | |
} | |
}) | |
} | |
checkForJank() | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment