Last active
December 16, 2015 20:18
-
-
Save yckart/5491033 to your computer and use it in GitHub Desktop.
performance.now polyfill
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
| (function (performance) { | |
| performance.now = performance.now || | |
| performance.webkitNow || | |
| performance.msNow || | |
| performance.mozNow || | |
| Date.now || function () { | |
| return new Date().getTime(); | |
| }; | |
| }(this.performance = this.performance || {})); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment