Last active
March 28, 2018 18:36
-
-
Save SadPandaBear/3932e25f778eef8dae75fcc2ff50ea43 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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