Skip to content
This repository has been archived by the owner on Nov 22, 2019. It is now read-only.

madewithlove/redux-saga-debounce-effect

Repository files navigation

redux-saga debounce effect

A small debounce effect for redux-saga

Usage

import {debounce, debounceFor} from 'redux-saga-debounce-effect';

// Using the default of 500ms
yield debounce(pattern, saga, ...args);

// Or specifying the debounce period yourself
yield debounceFor(pattern, saga, ms, ...args);