MCPcopy
hub / github.com/vuejs/composition-api / isObject

Function isObject

src/utils/utils.ts:85–87  ·  view source on GitHub ↗
(val: unknown)

Source from the content-addressed store, hash-verified

83}
84
85export function isObject(val: unknown): val is Record<any, any> {
86 return val !== null && typeof val === 'object'
87}
88
89export function isPlainObject(x: unknown): x is Record<any, any> {
90 return toString(x) === '[object Object]'

Callers 8

initSetupFunction · 0.90
shallowReactiveFunction · 0.90
reactiveFunction · 0.90
ssrMockReactivityFunction · 0.90
readonlyFunction · 0.90
shallowReadonlyFunction · 0.90
loadFunction · 0.90
traverseFunction · 0.90

Calls

no outgoing calls

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…