UNPKG
@mt-kit/utils
Version:
latest (1.1.0)
1.1.0
1.0.1
1.0.0
一个常用的工具库
github.com/Not-have/micro-tools/tree/main/packages-utils
Not-have/micro-tools
@mt-kit/utils
/
dist
/
is-function
/
index.d.ts
7 lines
(6 loc)
•
214 B
TypeScript
View Raw
1
2
3
4
5
6
7
/** * 是否函数类型判断 *
@param
value
*
@return
{
value is Function
} 如果 value 为 function,则返回 true,否则返回 false */
export
default
function
isFunction
(
value: any
): value is
Function
;