A utility package that helps with debouncing calls that returns promise which further resolves in data.
npm install debounce-promise-latestbash
npm install debounce-promise-latest
`Usage
`js
import debounced from 'debounce-promise-latest';const handleAsyncTask = async () => {
const data = await debounced(debounceFunction, delay, options);
}
``