Skip to content

Instantly share code, notes, and snippets.

@iammerrick
Created March 16, 2017 22:07
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save iammerrick/c037bfc6870c816291d9ceea2cab2f7c to your computer and use it in GitHub Desktop.
Save iammerrick/c037bfc6870c816291d9ceea2cab2f7c to your computer and use it in GitHub Desktop.
requestIdleCallback(function tick() {
requestIdleCallback(tick);
});
const tick = () => {
requestIdleCallback(tick);
};
requestIdleCallback(tick);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment