Skip to content

Instantly share code, notes, and snippets.

@fabimc
Created March 31, 2017 16:59
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 fabimc/9d5ea098339c2a5f7bb3aa8532db0cac to your computer and use it in GitHub Desktop.
Save fabimc/9d5ea098339c2a5f7bb3aa8532db0cac to your computer and use it in GitHub Desktop.
debounce functions
constructor () {
super()
this.putTempMin = debounce(this.setTempMin, 600)
this.putTempMax = debounce(this.setTempMax, 600)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment