MCPcopy
hub / github.com/mobxjs/mobx / isObject

Function isObject

packages/mobx/src/utils/utils.ts:81–83  ·  view source on GitHub ↗
(value: any)

Source from the content-addressed store, hash-verified

79}
80
81export function isObject(value: any): value is Object {
82 return value !== null && typeof value === "object"
83}
84
85export function isPlainObject(value: any) {
86 if (!isObject(value)) {

Callers 4

isObservableObjectFunction · 0.85
isObservableArrayFunction · 0.85
isPlainObjectFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…