UNPKG
front-standard-utils
Version:
latest (0.1.5)
0.1.5
0.1.4
0.1.3
0.1.2
0.1.1
0.1.0
前端工具库
github.com/Weber-hui/front-utils
front-standard-utils
/
dist
/
object.d.ts
14 lines
(13 loc)
•
286 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
/** * *
@desc
判断`obj`是否为空 *
@param
{
Object
}
obj
*
@return
{
Boolean
} */
export
declare
const
isEmptyObject
:
(
obj
:
any
) =>
boolean
;
/** *
@desc
obj深克隆 *
@param
{
Object
}
obj
*
@return
{
obj
} */
export
declare
function
deepClone
(
obj
:
any
):
any
;