Skip to content

Instantly share code, notes, and snippets.

@RubenVerborgh
Last active August 15, 2016 22:51
Show Gist options
  • Save RubenVerborgh/a9240a4a0db280f597a16fc3ed5411bd to your computer and use it in GitHub Desktop.
Save RubenVerborgh/a9240a4a0db280f597a16fc3ed5411bd to your computer and use it in GitHub Desktop.
var i = 2e5, start = new Date();
void setImmediate(function next(i) {
if (i > 0)
setImmediate(next, i - 1);
else
console.log((new Date() - start) / 1000);
}, i);
global.setImmediate = null;
require('./setImmediate');
var i = 3e6;
setImmediate(function next(i) {
if (i > 0)
setImmediate(next, i - 1);
}, i);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment