Skip to content

Instantly share code, notes, and snippets.

@saradornblaser
Created December 10, 2018 18:11
Show Gist options
  • Save saradornblaser/7a98ae90bed0245645c26ea95e348dcc to your computer and use it in GitHub Desktop.
Save saradornblaser/7a98ae90bed0245645c26ea95e348dcc to your computer and use it in GitHub Desktop.
utils.throttle = (func, delay) => {
function throttledFunc(...args) {
setTimeout(function () {
func(...args)
}, delay);
}
return throttledFunc;
};
module.exports = utils;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment