Skip to content

Instantly share code, notes, and snippets.

@boldfacedesign
Forked from ebidel/imports_timing.js
Last active August 29, 2015 14:26
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 boldfacedesign/78973964d3fbb76b8c81 to your computer and use it in GitHub Desktop.
Save boldfacedesign/78973964d3fbb76b8c81 to your computer and use it in GitHub Desktop.
HTML Imports Resource Timing performance
// Know how fast your HTML Imports are
var imports = document.querySelectorAll('link[rel="import"]');
[].forEach.call(imports, function(link) {
var entries = performance.getEntriesByName(link.href);
console.info('=== HTML Imports perf ===');
entries.forEach(function(e) {
console.log(e.name, 'took', e.duration, 'ms');
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment