Lodash - overSome 方法
语法
_.overSome([predicates=[_.identity]])
创建一个函数,当使用它接受到的的参数调用任何谓词时,检查这些谓词是否返回真值。
参数
[predicates=[_.identity]] (...(Function|Function[])) − 要检查的谓词。
输出
(Function) − 返回新的函数。
示例
var _ = require('lodash'); var func = _.overSome([Boolean, isFinite]); console.log(func('1')); console.log(func(null)); console.log(func(NaN));
将以上程序保存在 tester.js 中。运行以下命令执行此程序。
命令
\>node tester.js
输出
true true false
lodash_util.htm
广告