code2021-l
Version:
前端自定义工具
8 lines (7 loc) • 337 B
JavaScript
// 入口js 向外暴露工具函数
export { call } from './function/call'
export { bind } from './function/bind'
export { apply } from './function/apply'
export { debounce } from './function/debounce'
export { throttle } from './function/throttle'
export { map, find, filter ,findIndex, reduce , every, some } from './array/decleares'