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
min.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 minimum value.
* @example
*
* _.min([4, 2, 8, 6]);
* min([4, 2, 8, 6]);
* // => 2
*
* _.min([]);
* min([]);
* // => undefined
*/
function min(array) {