Last active
August 22, 2019 07:13
-
-
Save haishengwu-okta/75935f4c590e36e12e939ac3940fb389 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 f1 = (x) => { console.log(x); }; | |
const f2 = _.throttle(f1, 100, { trailing: false }); | |
f2('a'); | |
f2('b'); | |
f2('c'); | |
f2('d'); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment