* Checks if `value` is the * [language type](http://www.ecma-international.org/ecma-262/7.0/#sec-ecmascript-language-types) * of `Object`. (e.g. arrays, functions, objects, regexes, `new Number(0)`, and `new String('')`) * * @static * @memberOf _ * @since 0.1.0 * @category Lang * @param {*}
(value)
| 789 | * // => false |
| 790 | */ |
| 791 | function isObject(value) { |
| 792 | const type = typeof value; |
| 793 | return !!value && (type === "object" || type === "function"); |
| 794 | } |
| 795 | |
| 796 | /** |
| 797 | * Checks if `value` is object-like. A value is object-like if it's not `null` |
no outgoing calls
no test coverage detected