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

@@ -14,7 +14,6 @@ const propertyIsEnumerable = objectProto.propertyIsEnumerable;
* Checks if `value` is likely an `arguments` object.
*
* @static
* @memberOf _
* @since 0.1.0
* @category Lang
* @param {*} value The value to check.
@@ -22,10 +21,10 @@ const propertyIsEnumerable = objectProto.propertyIsEnumerable;
* else `false`.
* @example
*
* _.isArguments(function() { return arguments; }());
* isArguments(function() { return arguments; }());
* // => true
*
* _.isArguments([1, 2, 3]);
* isArguments([1, 2, 3]);
* // => false
*/
const isArguments = baseIsArguments(function(...args) { return args; }()) ? baseIsArguments : value => isObjectLike(value) && hasOwnProperty.call(value, 'callee') &&