MCPcopy Create free account
hub / github.com/krasimir/react-in-patterns / isObjectLike

Function isObjectLike

code/redux/public/app.js:847–849  ·  view source on GitHub ↗

* Checks if `value` is object-like. A value is object-like if it's not `null` * and has a `typeof` result of "object". * * @static * @memberOf _ * @since 4.0.0 * @category Lang * @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

845 * // => false
846 */
847function isObjectLike(value) {
848 return value != null && typeof value == 'object';
849}
850
851module.exports = isObjectLike;
852

Callers 1

isPlainObjectFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected