Lodash - overEvery 方法



语法

_.overEvery([predicates=[_.identity]])

创建一个函数来检查,当使用其接收到的参数调用所有谓词条件函数时,是否它们都返回真值。

参数

  • [predicates=[_.identity]] (...(Function|Function[])) − 要检查的谓词条件函数。

输出

  • (Function) − 返回新函数。

示例

var _ = require('lodash');
var func = _.overEvery([Boolean, isFinite]);
 
console.log(func('1'));
console.log(func(null));
console.log(func(NaN));

将上述程序保存在 **tester.js** 中。运行以下命令来执行该程序。

命令

\>node tester.js

输出

true
false
false
lodash_util.htm
广告