Created
April 25, 2024 15:39
-
-
Save Sc4ramouche/e4d5c7851099d69d699f0e406323d16e 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
let start = performance | |
.getEntriesByType('mark') | |
.find(m => m.name === 'dex-load-start'); | |
let end = performance | |
.getEntriesByType('mark') | |
.find(m => m.name === 'dex-load-end'); | |
let duration = Math.round(end?.startTime - start?.startTime); | |
console.log('dex-load:', duration) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
If
NaN
is logged, it means that not both marks have been set yet.