Skip to content

Instantly share code, notes, and snippets.

@tanepiper
Forked from WebReflection/process.nextTick.js
Created June 19, 2012 10:59
Show Gist options
  • Save tanepiper/2953532 to your computer and use it in GitHub Desktop.
Save tanepiper/2953532 to your computer and use it in GitHub Desktop.
process.nextTick(callback) for browsers too
!function (window) {"use strict";
// by WebReflection - WTFPL License
var
prefixes = "r webkitR mozR msR oR".split(" "),
process = "process",
nextTick = "nextTick",
i = 0,
p = window[process] || (window[process] = {})
;
while (!p[nextTick] && i < prefixes.length)
p[nextTick] = window[prefixes[i++] + "equestAnimationFrame"]
;
p[nextTick] || (p[nextTick] = window.setTimeout);
}(this);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment