UNPKG

js-utils-chs

Version:

自定义工具函数库

21 lines (15 loc) 861 B
export { deepClone, deepMege } from './object/deepClone'; // 对象深度克隆 || 对象深度合并 export { queryParams } from './object/queryParams'; //对象转URL参数 export { proxy, proxyCustom } from './object/proxy' export { timeFormat } from './time/timeFormat'; //时间戳日期格式化 export { timeForm } from './time/timeFrom'; //时间戳转为多久之前 export { debounce } from './debounce' //防抖 export { throttle } from './throttle' //节流 export { strSplit, trim } from './string' //字符处理文件 export { rgbToHex, hexToRgb, colorGradient, colorToRgba } from './colorGradient' //颜色值的一个转换 export { random } from './math' export { randomArray } from './array' import * as test from './test' //验证 import * as array from './array/fun' //数组方法 export { test } export { array }