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

@@ -10,7 +10,6 @@ const WRAP_REARG_FLAG = 256;
* provided as the second argument, and so on.
*
* @static
* @memberOf _
* @since 3.0.0
* @category Function
* @param {Function} func The function to rearrange arguments for.
@@ -18,7 +17,7 @@ const WRAP_REARG_FLAG = 256;
* @returns {Function} Returns the new function.
* @example
*
* var rearged = _.rearg(function(a, b, c) {
* var rearged = rearg(function(a, b, c) {
* return [a, b, c];
* }, [2, 0, 1]);
*