MCPcopy Create free account
hub / github.com/OpenEndedGroup/Field2 / isObjectLike

Function isObjectLike

lib/web/jshint.js:2030–2032  ·  view source on GitHub ↗

* Checks if `value` is object-like. * * @private * @param {*} value The value to check. * @returns {boolean} Returns `true` if `value` is object-like, else `false`.

(value)

Source from the content-addressed store, hash-verified

2028 * @returns {boolean} Returns `true` if `value` is object-like, else `false`.
2029 */
2030 function isObjectLike(value) {
2031 return !!value && typeof value == 'object';
2032 }
2033
2034 /**
2035 * Used by `trimmedLeftIndex` and `trimmedRightIndex` to determine if a

Callers 15

lodashFunction · 0.85
baseFlattenFunction · 0.85
baseMergeFunction · 0.85
shimIsPlainObjectFunction · 0.85
isArgumentsFunction · 0.85
runInContextFunction · 0.85
isBooleanFunction · 0.85
isDateFunction · 0.85
isElementFunction · 0.85
isEmptyFunction · 0.85
isErrorFunction · 0.85
isNativeFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected