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

@@ -18,7 +18,6 @@ const nativeMax = Math.max;
* [spread operator](https://mdn.io/spread_operator).
*
* @static
* @memberOf _
* @since 3.2.0
* @category Function
* @param {Function} func The function to spread arguments over.
@@ -26,7 +25,7 @@ const nativeMax = Math.max;
* @returns {Function} Returns the new function.
* @example
*
* var say = _.spread(function(who, what) {
* var say = spread(function(who, what) {
* return who + ' says ' + what;
* });
*
@@ -38,7 +37,7 @@ const nativeMax = Math.max;
* Promise.resolve(36)
* ]);
*
* numbers.then(_.spread(function(x, y) {
* numbers.then(spread(function(x, y) {
* return x + y;
* }));
* // => a Promise of 76