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

5
nth.js
View File

@@ -6,7 +6,6 @@ import toInteger from './toInteger.js';
* element from the end is returned.
*
* @static
* @memberOf _
* @since 4.11.0
* @category Array
* @param {Array} array The array to query.
@@ -16,10 +15,10 @@ import toInteger from './toInteger.js';
*
* var array = ['a', 'b', 'c', 'd'];
*
* _.nth(array, 1);
* nth(array, 1);
* // => 'b'
*
* _.nth(array, -2);
* nth(array, -2);
* // => 'c';
*/
function nth(array, n) {