* 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 * @pa
(value)
| 1913 | * // => false |
| 1914 | */ |
| 1915 | function isObject(value) { |
| 1916 | var type = typeof value === 'undefined' ? 'undefined' : _typeof(value); |
| 1917 | return value != null && (type == 'object' || type == 'function'); |
| 1918 | } |
| 1919 | |
| 1920 | module.exports = isObject; |
| 1921 |
no outgoing calls
no test coverage detected