Skip to content

Instantly share code, notes, and snippets.

@exuanbo
Created October 26, 2020 20:14
Show Gist options
  • Save exuanbo/c63ffc39db883e46ffa74af4de26281d to your computer and use it in GitHub Desktop.
Save exuanbo/c63ffc39db883e46ffa74af4de26281d to your computer and use it in GitHub Desktop.
export const throttle = (fn: any, timeFrame: number) => {
let lastTime = 0
return () => {
const now = Date.now()
if (now - lastTime >= timeFrame) {
fn()
lastTime = now
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment