MCPcopy
hub / github.com/keepfool/vue-tutorials / isObject

Function isObject

06.Router/basic/js/vue.js:267–269  ·  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. * * @param {*} obj * @return {Boolean}

(obj)

Source from the content-addressed store, hash-verified

265 */
266
267 function isObject(obj) {
268 return obj !== null && typeof obj === 'object';
269 }
270
271 /**
272 * Strict object type check. Only returns true

Callers 9

looseEqualFunction · 0.70
mergeDataFunction · 0.70
setPathFunction · 0.70
vue.jsFile · 0.70
traverseFunction · 0.70
normalize$1Function · 0.70
getPropDefaultValueFunction · 0.70
baseCompareFunction · 0.70
LinkFunction · 0.70

Calls

no outgoing calls

Tested by

no test coverage detected