MCPcopy Create free account
hub / github.com/RubyLouvre/anu / isObject

Function isObject

test/babel.js:1915–1918  ·  view source on GitHub ↗

* 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)

Source from the content-addressed store, hash-verified

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

Callers 15

babel.jsFile · 0.70
fastKeyFunction · 0.70
isRegExpFunction · 0.70
isDateFunction · 0.70
isErrorFunction · 0.70
baseCloneFunction · 0.70
isIterateeCallFunction · 0.70
isFunctionFunction · 0.70
isStrictComparableFunction · 0.70
checkFunction · 0.70
jsescFunction · 0.70
baseIsNativeFunction · 0.70

Calls

no outgoing calls

Tested by

no test coverage detected