Skip to content

Instantly share code, notes, and snippets.

@oliverturner
Last active November 7, 2016 09:44
Show Gist options
  • Save oliverturner/17cff69fcaee56e87d374ced2c1670ef to your computer and use it in GitHub Desktop.
Save oliverturner/17cff69fcaee56e87d374ced2c1670ef to your computer and use it in GitHub Desktop.
const timing = performance.timing
const navStart = timing.navigationStart
const ttfb = timing.responseStart - navStart
const dclStart = timing.domContentLoadedEventStart - navStart
const dclEnd = timing.domContentLoadedEventEnd - navStart
const resources = performance.getEntriesByType('resource')
const delayDCL = resources.filter((res) => res.responseEnd < dclStart)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment