A debounced [observ](https://www.npmjs.com/package/observ) that will only notify every N milliseconds.
npm install observ-debounceA debounced observ
that will only notify every N milliseconds.
`` js
var Debounce = require('observ-debounce')
var debounce = Debounce(200) //5 times a second, max.
//register a listener
debounce(function (s) {
console.log(s)
})
while(reallyFast)//update the value lots!
debounce.set(newValue)
``
MIT