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
max.js
View File

@@ -8,16 +8,15 @@ import identity from './identity.js';
*
* @static
* @since 0.1.0
* @memberOf _
* @category Math
* @param {Array} array The array to iterate over.
* @returns {*} Returns the maximum value.
* @example
*
* _.max([4, 2, 8, 6]);
* max([4, 2, 8, 6]);
* // => 8
*
* _.max([]);
* max([]);
* // => undefined
*/
function max(array) {