Skip to content

Instantly share code, notes, and snippets.

@beaugunderson
Forked from anonymous/gist:4447348
Last active December 10, 2015 14:28
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save beaugunderson/4447350 to your computer and use it in GitHub Desktop.
Save beaugunderson/4447350 to your computer and use it in GitHub Desktop.
var original = cb;
cb = function wrapper() {
var args = arguments;
process.nextTick(function () {
original.apply(wrapper, args);
});
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment