Skip to content

Instantly share code, notes, and snippets.

@kritollm
Last active January 6, 2017 10:25
Show Gist options
  • Save kritollm/f18a880963dacf2eadda1814055f0071 to your computer and use it in GitHub Desktop.
Save kritollm/f18a880963dacf2eadda1814055f0071 to your computer and use it in GitHub Desktop.
module.exports = (function (w, prefixes, fnc) {
while (!fnc && prefixes.length) {
fnc = w[prefixes.pop() + 'equestAnimationFrame'];
}
return (fnc && fnc.bind(w)) || w.setImmediate || function (fnc) { setTimeout(fnc, 0); };
})(window || global, ['webkitR', 'mozR', 'msR', 'oR', 'r']);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment