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

@@ -5,7 +5,6 @@ import toNumber from './toNumber.js';
* Clamps `number` within the inclusive `lower` and `upper` bounds.
*
* @static
* @memberOf _
* @since 4.0.0
* @category Number
* @param {number} number The number to clamp.
@@ -14,10 +13,10 @@ import toNumber from './toNumber.js';
* @returns {number} Returns the clamped number.
* @example
*
* _.clamp(-10, -5, 5);
* clamp(-10, -5, 5);
* // => -5
*
* _.clamp(10, -5, 5);
* clamp(10, -5, 5);
* // => 5
*/
function clamp(number, lower, upper) {