Skip to content

Instantly share code, notes, and snippets.

@melvynhills
Created October 2, 2012 17:24
Show Gist options
  • Save melvynhills/3821382 to your computer and use it in GitHub Desktop.
Save melvynhills/3821382 to your computer and use it in GitHub Desktop.
CoffeeScript timeout/interval utils
# A more caffeinated way to call setTimeout and setInterval. By @kneath
window.after = (ms, cb) -> setTimeout cb, ms
window.every = (ms, cb) -> setInterval cb, ms
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment