Skip to content

Instantly share code, notes, and snippets.

@br4instormer
Created February 23, 2023 21:06
Show Gist options
  • Select an option

  • Save br4instormer/dc1b97d24338e77fb354f909f8bda515 to your computer and use it in GitHub Desktop.

Select an option

Save br4instormer/dc1b97d24338e77fb354f909f8bda515 to your computer and use it in GitHub Desktop.
Javascript debounce oneliner
export default (callback, time = 250, interval) =>
(...args) =>
clearTimeout(interval, interval = setTimeout(callback, time, ...args))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment