Skip to content

Instantly share code, notes, and snippets.

@micmro
Created November 19, 2014 04:49
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save micmro/bb3d3cc9417a7d632d02 to your computer and use it in GitHub Desktop.
Save micmro/bb3d3cc9417a7d632d02 to your computer and use it in GitHub Desktop.
Page Resources ordered by duration
window.performance.getEntriesByType("resource").sort(function(a, b) {
return b.duration - a.duration;
}).forEach(function(a){
console.log(Math.floor(a.duration), a.name);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment