函数库, 面向复杂业务场景的 js 类库
防抖函数
Demo:
import { debounce } from 'func-package'; function sayLove(name) { return name;} debounce(sayLove, 200)('xuxiaoxi');