Skip to content

Instantly share code, notes, and snippets.

@zhongzichang
Created June 26, 2020 21:33
Show Gist options
  • Save zhongzichang/5e9078f7394843e51b6c04fd28cba171 to your computer and use it in GitHub Desktop.
Save zhongzichang/5e9078f7394843e51b6c04fd28cba171 to your computer and use it in GitHub Desktop.
function debounce(fn, ms) {
let timer
return _ => {
clearTimeout(timer)
timer = setTimeout(_ => {
timer = null
fn.apply(this, arguments)
}, ms)
};
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment