Created
October 2, 2019 16:17
-
-
Save gthrm/7578262b9558f1d27386c0749f837101 to your computer and use it in GitHub Desktop.
funcLol
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
function funcLol(params) { | |
this.timeOut ? clearTimeout(this.timeOut) : null | |
this.timeOut = setTimeout(() => { | |
console.log('post', params); | |
}, 1000); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment