Skip to content

Instantly share code, notes, and snippets.

@indatawetrust
Created November 7, 2017 11:05
Show Gist options
  • Save indatawetrust/0aeb922a5a70ce1464ca949f5dd69c20 to your computer and use it in GitHub Desktop.
Save indatawetrust/0aeb922a5a70ce1464ca949f5dd69c20 to your computer and use it in GitHub Desktop.
var interval = (func, bind, time) => {
this.interval = setInterval(func.bind(this, ...bind), time)
this.die = clearInterval.bind(null, this.interval)
}
interval(i => {
console.log(i)
this.die()
}, [1], 100)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment