MCPcopy
hub / github.com/ygs-code/vue / isObject

Function isObject

vue.js:66–69  ·  view source on GitHub ↗

* Quick object check - this is primarily used to tell * Objects from primitive values when we know the value * is a JSON-compliant type.

(obj)

Source from the content-addressed store, hash-verified

64 * is a JSON-compliant type.
65 */
66 function isObject(obj) {
67 //判断是否是对象
68 return obj !== null && typeof obj === 'object'
69 }
70
71 /**
72 * Get the raw type string of a value e.g. [object Object]

Callers 15

looseEqualFunction · 0.85
observeFunction · 0.85
getPropDefaultValueFunction · 0.85
_traverseFunction · 0.85
ensureCtorFunction · 0.85
resolveAsyncComponentFunction · 0.85
vue.jsFile · 0.85
renderListFunction · 0.85
renderSlotFunction · 0.85
bindObjectPropsFunction · 0.85
createComponentFunction · 0.85
registerDeepBindingsFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected