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

@@ -12,7 +12,6 @@ const nativeReverse = arrayProto.reverse;
* [`Array#reverse`](https://mdn.io/Array/reverse).
*
* @static
* @memberOf _
* @since 4.0.0
* @category Array
* @param {Array} array The array to modify.
@@ -21,7 +20,7 @@ const nativeReverse = arrayProto.reverse;
*
* var array = [1, 2, 3];
*
* _.reverse(array);
* reverse(array);
* // => [3, 2, 1]
*
* console.log(array);