unary

最后更新于:2022-04-02 00:01:33

## unary + [link](./unary "Link to this entry.") + [source](https://github.com/lodash/lodash/blob/4.5.0正式版/lodash.src.js#L9199 "View in source.") + [npm](https://www.npmjs.com/package/lodash.unary "See the npm package.") ``` _.unary(func) ``` 创建一个最多接受一个参数的函数,忽略多余的参数。 ### 参数 1. func (Function) 要处理的函数 ### 返回值 (Function) 返回新函数 ### 示例 ``` _.map(['6', '8', '10'], _.unary(parseInt)); // => [6, 8, 10] ```
';