UNPKG
xe-utils-es
Version:
latest (0.0.3)
0.0.3
0.0.2
0.0.1
JavaScript 函数库、工具类
xe-utils-es
/
types
/
hasOwnProp.d.ts
10 lines
(9 loc)
•
238 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
10
/** * 判断对象自身属性中是否具有指定的属性 * *
@param
{
object
} obj 对象 *
@param
{
String/Number
} key 键值 *
@return
{
boolean
} */
declare
function
hasOwnProp
(
obj
:
any
,
key
:
any
):
any
;
export
default
hasOwnProp;