Created
June 16, 2017 16:17
-
-
Save andreasvirkus/bd967c2ed9f6a65c1889ad4510afd3b7 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
module.exports = function() { | |
let now = new Date().getTime(); | |
let loadTime = now - performance.timing.navigationStart; | |
console.log("User-perceived page loading time: " + loadTime); | |
return loadTime; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment