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

@@ -9,10 +9,9 @@ const nativeMin = Math.min;
*
* @static
* @since 4.0.0
* @memberOf _
* @category Function
* @param {Function} func The function to wrap.
* @param {...(Function|Function[])} [transforms=[_.identity]]
* @param {...(Function|Function[])} [transforms=[identity]]
* The argument transforms.
* @returns {Function} Returns the new function.
* @example
@@ -25,7 +24,7 @@ const nativeMin = Math.min;
* return n * n;
* }
*
* var func = _.overArgs(function(x, y) {
* var func = overArgs(function(x, y) {
* return [x, y];
* }, [square, doubled]);
*