# observ-debounce

> A debounced [observ](https://www.npmjs.com/package/observ) that will only notify every N milliseconds.

Latest version **1.1.1** (published 2015-08-08) · MIT license · 0 weekly downloads

## Install

```sh
npm install observ-debounce
pnpm add observ-debounce
yarn add observ-debounce
bun add observ-debounce
```

## Health

**Score 15/100 (F)** — status: abandoned.

Positive: no vulnerabilities.

Warnings: low downloads; no types; no esm support.

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 1.1.1 |
| Published | 2015-08-08 |
| First published | 2015-07-02 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 1 |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 3 |
| Author | Dominic Tarr |
| Maintainers | dominictarr |

## Links

- npm: https://www.npmjs.com/package/observ-debounce
- Repository: https://github.com/dominictarr/observ-debounce
- Issues: https://github.com/dominictarr/observ-debounce/issues
- npm.io page: https://npm.io/package/observ-debounce

## Dependencies (1)

- [observ](https://npm.io/package/observ.md) ~0.2.0

## Recent versions

- 1.1.1 (latest) — 2015-08-08
- 1.1.0 — 2015-08-08
- 1.0.0 — 2015-07-02

## README

# observ-debounce

A debounced [observ](https://www.npmjs.com/package/observ)
that will only notify every N milliseconds.

## Example

``` 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)


```

## License

MIT

---
_Source: https://npm.io/package/observ-debounce · Machine-readable twin of the npm.io package page. Health data is recomputed on every publish._
