Created
July 4, 2018 09:26
-
-
Save luxplanjay/6702178144b313cf695fa16a5f2fe582 to your computer and use it in GitHub Desktop.
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 getTimeToInteractive() { | |
const { requestStart, domInteractive } = window.performance.timing; | |
return requestStart - domInteractive; | |
} | |
function getResourceEntries() { | |
return window.performance.getEntriesByType('resource') || []; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment