-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.js
32 lines (29 loc) · 849 Bytes
/
index.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
/*
* @Description: 入口文件
* @Version: 1.0
* @Autor: lqrui
* @Date: 2020-11-19 10:18:43
* @LastEditors: lqrui.cn
* @LastEditTime: 2020-12-25 08:50:43
*/
import './extension/Array';
import { intersect, minus, complement, unionSet } from './src/array';
import { arrayToTree } from './src/arrayToTree';
import { debounce, debounceSync } from './src/debounce';
import { deepClone } from './src/deepClone';
import { formatHMS } from './src/formatHMS';
import { getParams } from './src/getParams';
import { isEmptyObject } from './src/isEmptyObject';
import { isEqual, isToEqual } from './src/isEqual';
import { queryParams } from './src/queryParams';
export {
intersect, minus, complement, unionSet,
arrayToTree,
debounce, debounceSync,
deepClone,
formatHMS,
getParams,
isEmptyObject,
isEqual, isToEqual,
queryParams,
};