Skip to content

Instantly share code, notes, and snippets.

@socker210
Forked from WebReflection/process.nextTick.js
Created June 22, 2020 10:47
Show Gist options
  • Save socker210/fdb17707dee62dcf7b0ac4df51bf90d7 to your computer and use it in GitHub Desktop.
Save socker210/fdb17707dee62dcf7b0ac4df51bf90d7 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.setImmediate || window.setTimeout);
}(this);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment