forked from umicro/uView
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathjs.config.js
More file actions
93 lines (93 loc) · 1.67 KB
/
js.config.js
File metadata and controls
93 lines (93 loc) · 1.67 KB
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
export default [
{
groupName: '网络',
list: [
{
path: 'http',
icon: 'http',
title: 'Http 请求',
}
]
},
{
groupName: '全局变量',
list: [
{
path: 'globalVariable',
icon: 'globalVariable',
title: 'GlobalVariable 全局变量',
}
]
},
{
groupName: '工具库',
list: [
{
path: 'deepMerge',
icon: 'deepMerge',
title: 'deepMerge 对象深度合并',
},{
path: 'deepClone',
icon: 'deepClone',
title: 'deepClone 对象深度克隆',
},
{
path: 'timeFormat',
icon: 'timeFormat',
title: 'TimeFormat 时间格式化',
},{
path: 'timeFrom',
icon: 'timeFrom',
title: 'timeFrom 多久之前',
},{
path: 'guid',
icon: 'guid',
title: 'Guid 全局唯一id',
},{
path: 'route',
icon: 'route',
title: 'Route 路由跳转',
},{
path: 'randomArray',
icon: 'randomArray',
title: 'RandomArray 数组乱序',
},{
path: 'colorSwitch',
icon: 'colorSwitch',
title: 'ColorSwitch 颜色转换',
},{
path: 'color',
icon: 'color',
title: 'Color 颜色值',
},{
path: 'queryParams',
icon: 'queryParams',
title: 'QueryParams 对象转URL参数',
},{
path: 'test',
icon: 'test',
title: 'Test 规则校验',
},{
path: 'md5',
icon: 'md5',
title: 'Md5 md5加密',
},{
path: 'random',
icon: 'random',
title: 'Random 随机数值',
},{
path: 'trim',
icon: 'trim',
title: 'Trim 去除空格',
},{
path: 'getRect',
icon: 'getRect',
title: 'GetRect 节点信息',
},{
path: 'mpShare',
icon: 'mpShare',
title: 'MpShare 小程序分享',
}
]
}
]