Skip to content

Instantly share code, notes, and snippets.

@Krasnov8953
Last active March 16, 2019 12:51
Show Gist options
  • Save Krasnov8953/a1ce70c45b23859f5e26c35f62bd949b to your computer and use it in GitHub Desktop.
Save Krasnov8953/a1ce70c45b23859f5e26c35f62bd949b to your computer and use it in GitHub Desktop.
const debounce = (callback, delay) => {
let timerId;
return (...args) => {
timerId && clearTimeout(timerId);
timerId = setTimeout(
() => callback(...args),
delay
);
}
};
let delayProcess = debounce(process, 400);
$(window).resize(delayProcess);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment