Skip to content

Instantly share code, notes, and snippets.

@lichspace
Created November 16, 2018 02:26
Show Gist options
  • Save lichspace/15a0563dda3063c5d344ddf9ad2fcf2f to your computer and use it in GitHub Desktop.
Save lichspace/15a0563dda3063c5d344ddf9ad2fcf2f to your computer and use it in GitHub Desktop.
/**
* 去抖函数
* @param func
* @param millisecond
*/
module.exports = (func, millisecond)=>{
//let timeId
let running = false
function debounced() {
if(running) return
running = true
setTimeout(()=>{
func.apply(null,arguments)
running = false
},millisecond)
}
return debounced
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment