Created
June 7, 2016 16:58
-
-
Save mikekavouras/db745345777eb6c952ea9f87899d6055 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
| var timing = window.performance.timing, | |
| domInteractive = timing.domInteractive, | |
| requestStart = timing.requestStart, | |
| responseStart = timing.responseStart; | |
| console.log('Start request -> DOM Interactive', domInteractive - requestStart); | |
| console.log('Start response -> DOM Interactive', domInteractive - responseStart); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment