https://github.com/willtpwise/debounced-resize
https://github.com/willtpwise/debounced-resize
Last synced: 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/willtpwise/debounced-resize
- Owner: willtpwise
- Created: 2018-01-29T22:35:32.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2018-01-30T06:04:31.000Z (over 8 years ago)
- Last Synced: 2025-03-05T17:51:57.158Z (over 1 year ago)
- Language: JavaScript
- Size: 1.95 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
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')
})
```