Lodash - isEqualWith 方法
语法
_.isEqualWith(value, other, [customizer])
此方法类似于 _.isEqual,但它接受 customizer,其用于比较值。如果 customizer 返回未定义,则改由方法处理比较。customizer 最多使用六个参数进行调用:(objValue, othValue [, index|key, object, other, stack]).
参数
value (*) − 要比较的值。
other (*) − 要比较的另一个值。
[customizer] (Function) − 用于自定义比较的函数。
输出
(boolean) − 如果值相等则返回 true,否则返回 false。
示例
var _ = require('lodash'); function isGreeting(value) { return /^h(?:i|ello)$/.test(value); } function customizer(objValue, othValue) { if (isGreeting(objValue) && isGreeting(othValue)) { return true; } } var array = ['hello', 'goodbye']; var other = ['hi', 'goodbye']; console.log(_.isEqualWith(array, other, customizer));
将以上程序保存在 tester.js 中。运行以下命令来执行此程序。
命令
\>node tester.js
输出
true
lodash_lang.htm
广告