UNPKG
homebridge-touchwand-google
Version:
latest (0.0.9)
0.0.9
Google Smart Home
github.com/zeev-mindali/homebridge-google
zeev-mindali/homebridge-google
homebridge-touchwand-google
/
node_modules
/
rxjs
/
src
/
internal
/
util
/
isArrayLike.ts
1 lines
•
124 B
text/typescript
View Raw
1
export
const
isArrayLike = (<T>(
x
:
any
): x is
ArrayLike
<T> => x &&
typeof
x.
length
===
'number'
&&
typeof
x !==
'function'
);