Skip to content

Instantly share code, notes, and snippets.

@semencov
Created March 1, 2019 07:41
Show Gist options
  • Save semencov/ed8e57b5ed59f6d199198ec34f4b822e to your computer and use it in GitHub Desktop.
Save semencov/ed8e57b5ed59f6d199198ec34f4b822e to your computer and use it in GitHub Desktop.
const throttle = fn => {
let isRunning = false
return () => {
if (isRunning) return
isRunning = true
window.requestAnimationFrame(() => (fn(), isRunning = false))
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment