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