MCPcopy Index your code
hub / github.com/wavetermdev/waveterm / isArray

Function isArray

frontend/util/ijson.ts:32–34  ·  view source on GitHub ↗
(obj: any)

Source from the content-addressed store, hash-verified

30}
31
32function isArray(obj: any): boolean {
33 return obj != null && Array.isArray(obj);
34}
35
36function isObject(obj: any): boolean {
37 return obj != null && obj instanceof Object && !isArray(obj);

Callers 6

isObjectFunction · 0.70
getPathFunction · 0.70
combineFn_arrayAppendFunction · 0.70
checkPathFunction · 0.70
isEmptyFunction · 0.70
setPathInternalFunction · 0.70

Calls

no outgoing calls

Tested by

no test coverage detected