UNPKG

simple-utils-js

Version:

前端,前端开发,前端框架,web前端,前端面试题,技术文档,学习,面试,JavaScript,js,ES6,TypeScript,vue,python,css3,html5,Node,git,github,markdown

16 lines (14 loc) 304 B
/** * @description: 防抖 * @param {*} * @return {*} */ let timeout = null; function debounce(func, wait = 500) { // 清除定时器 if (timeout !== null) clearTimeout(timeout) timeout = setTimeout(function () { typeof func === 'function' && func() }, wait) } module.exports = debounce