MCPcopy Index your code
hub / github.com/javascriptdata/danfojs / isObject

Method isObject

src/danfojs-base/shared/utils.ts:66–68  ·  view source on GitHub ↗

* Checks if value is an object. * @param value The value to check. * @returns

(value: any)

Source from the content-addressed store, hash-verified

64 * @returns
65 */
66 isObject(value: any): boolean {
67 return value && typeof value === "object" && value.constructor && value.constructor.name === "Object";
68 }
69
70 /**
71 * Checks if a value is null

Callers 4

constructorMethod · 0.80
mapMethod · 0.80
constructorMethod · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected