Skip to content

Instantly share code, notes, and snippets.

@othiym23
Forked from beaugunderson/wrap.js
Last active December 10, 2015 14:28
Show Gist options
  • Save othiym23/4447478 to your computer and use it in GitHub Desktop.
Save othiym23/4447478 to your computer and use it in GitHub Desktop.
var original = cb;
cb = function wrapper() {
var args = arguments;
process.nextTick(original.apply.bind(this, this, args));
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment