Skip to content

Instantly share code, notes, and snippets.

@SadPandaBear
Last active March 28, 2018 18:36
Show Gist options
  • Save SadPandaBear/3932e25f778eef8dae75fcc2ff50ea43 to your computer and use it in GitHub Desktop.
Save SadPandaBear/3932e25f778eef8dae75fcc2ff50ea43 to your computer and use it in GitHub Desktop.
const debounce = (time, f) => (...args) => (
Promise.race([
new Promise((_, reject) => setTimeout(reject, time, 'TIMEOUT')),
f(...args)
])
)
export default debounce
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment