Skip to content

Instantly share code, notes, and snippets.

@haishengwu-okta
Last active August 22, 2019 07:13
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save haishengwu-okta/75935f4c590e36e12e939ac3940fb389 to your computer and use it in GitHub Desktop.
Save haishengwu-okta/75935f4c590e36e12e939ac3940fb389 to your computer and use it in GitHub Desktop.
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