0.1.4 • Published 6 years ago

@nielse63/throttle v0.1.4

Weekly downloads
2
License
MIT
Repository
github
Last release
6 years ago

@nielse63/throttle

Creates a throttled function that's evoked only as frequently as you want it to

Installation

Install with Yarn or npm

yarn add --dev @nielse63/throttle
npm install --save-dev @nielse63/throttle

Usage

const throttle = require('@nielse63/throttle');

function callback() {
  // some expensive function...
}

window.addEventListener('scroll', throttle(callback, 150), false);
// `callback` is only executed once every 150ms

API

debounce(callback[, delay, immediate])

NameTypeDescriptionDefault
callbackFunctionCallback to execute after delay msundefined
waitNumberDelay, in ms, before executing callback250

Return Value

Function - The wrapper to execute the callback

Contributing

Development Setup

This project uses a monorepo setup that requires using Yarn because it relies on Yarn workspaces. Clone the repo and install the dependencies:

git clone https://github.com/nielse63/nielse63.git
cd nielse63
yarn

License

MIT © Erik Nielsen