UNPKG
tc39-weakrefs-shim
Version:
latest (0.1.0)
0.1.0
0.0.2
0.0.1
0.0.1-security
Shim for TC39 Weakrefs proposal
github.com/mhofman/tc39-weakrefs-shim
mhofman/tc39-weakrefs-shim
tc39-weakrefs-shim
/
module
/
utils
/
lodash
/
isNative.d.ts
10 lines
(8 loc)
•
254 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
10
/** * Checks if value is a native function. *
@param
value The value to check. * *
@return
Returns true if value is a native function, else false. */
declare
function
isNative
(
value: any
):
value
is
(
...args: any[]
) =>
any; export
default
isNative;