debounce 防抖函数
import { debounce } from 'm-utilsdk/index'; function sayLove(name) { return name; } debounce(sayLove, 200)('zhucc');
← aesDecrypt throttle →