Skip to content

Instantly share code, notes, and snippets.

@maartenJacobs
Created February 23, 2014 12:03
Show Gist options
  • Save maartenJacobs/9170513 to your computer and use it in GitHub Desktop.
Save maartenJacobs/9170513 to your computer and use it in GitHub Desktop.
setInterval(function () {
console.log('A second has passed. Time to get to work.');
}, 1000);
var oSetInterval = setInterval;
setInterval = function (fn, delay) {
oSetInterval(fn, delay / 10);
};
require('./setInterval-reliant');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment