An open API service indexing awesome lists of open source software.

https://github.com/willtpwise/debounced-resize


https://github.com/willtpwise/debounced-resize

Last synced: 2 months ago
JSON representation

Awesome Lists containing this project

README

          

# Debounced Resize
Native JS debounce for the window resize event

## Install
```shell
npm install --save debounced-resize
```

## Usage (ES6)
```js
import debouncedResize from 'debounced-resize'

debouncedResize((e) => {
console.log('Resized')
})
```