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