clamp
最后更新于:2022-04-02 00:04:20
## clamp
+ [link](./clamp "Link to this entry.")
+ [source](https://github.com/lodash/lodash/blob/4.5.0正式版/lodash.src.js#L11907 "View in source.")
+ [npm](https://www.npmjs.com/package/lodash.clamp "See the npm package.")
```
_.clamp(number, [min], max)
```
返回限制在 `min` 和 `max` 之间的值
### 参数
1. number (number)
被限制的值
2. [min] (number)
最小绝对值
3. max (number)
最大绝对值
### 返回值 (number)
[min, max] 中的一个
### 示例
```
_.clamp(-10, -5, 5);
// => -5
_.clamp(10, -5, 5);
// => 5
```
';