Remove references to _.

This commit is contained in:
John-David Dalton
2017-01-09 17:38:33 -08:00
parent 65654f8f9e
commit 77cc37ba49
410 changed files with 875 additions and 1157 deletions

View File

@@ -4,23 +4,22 @@
* of `Object`. (e.g. arrays, functions, objects, regexes, `new Number(0)`, and `new String('')`)
*
* @static
* @memberOf _
* @since 0.1.0
* @category Lang
* @param {*} value The value to check.
* @returns {boolean} Returns `true` if `value` is an object, else `false`.
* @example
*
* _.isObject({});
* isObject({});
* // => true
*
* _.isObject([1, 2, 3]);
* isObject([1, 2, 3]);
* // => true
*
* _.isObject(_.noop);
* isObject(noop);
* // => true
*
* _.isObject(null);
* isObject(null);
* // => false
*/
function isObject(value) {