Code
Hub
Workspaces
Connect
Indexed graphs
Engine
MCP
copy
hub
/
github.com/vuejs/core
/ isPlainObject
Function
isPlainObject
packages/shared/src/general.ts:74–75 ·
view source on GitHub ↗
(val: unknown)
Source
from the content-addressed store, hash-verified
72
}
73
74
export
const
isPlainObject = (val: unknown): val is object =>
75
toTypeString(val) ===
'[object Object]'
76
77
export
const
isIntegerKey = (key: unknown): boolean =>
78
isString(key) &&
Callers
6
traverse
Function · 0.90
clone
Function · 0.90
replacer
Function · 0.90
defineCustomElement
Function · 0.90
dispatch
Method · 0.90
deepMergeData
Function · 0.90
Calls
1
toTypeString
Function · 0.85
Tested by
no test coverage detected