before
最后更新于:2022-04-02 00:00:47
## before
+ [link](./before "Link to this entry.")
+ [source](https://github.com/lodash/lodash/blob/4.5.0正式版/lodash.src.js#L8375 "View in source.")
+ [npm](https://www.npmjs.com/package/lodash.before "See the npm package.")
```
_.before(n, func)
```
创建一个调用 `func` 的函数。 调用次数不超过 `N` 次。 之后再调用这个函数,将返回最后一个调用的结果。
### 参数
1. n (number)
超过多少次不再调用 `func`
2. func (Function)
指定的触发的函数
### 返回值 (Function)
返回限定的函数
### 示例
```
jQuery(element).on('click', _.before(5, addContactToList));
// => 最多允许添加4个联系人到列表里
```
';