UNPKG
zen-utils
Version:
latest (1.0.2)
1.0.2
1.0.1
zen-utils
/
lib
/
index.js
15 lines
(12 loc)
•
406 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
'use strict'
;
const
NumberUtils
=
require
(
'./NumberUtils'
);
/** * Created by liguoxin on 2017/3/9. * */
const
StringUtils
=
require
(
'./StringUtils'
);
const
ObjectUtils
=
require
(
'./ObjectUtils'
);
module
.
exports
= {
NumberUtils
,
StringUtils
,
ObjectUtils
};