gjslint suggestions.

This commit is contained in:
Mathieu Lecarme 2011-12-04 22:48:22 +01:00
parent ef043af1d4
commit 4343f72fab
2 changed files with 7 additions and 5 deletions

View File

@ -61,14 +61,14 @@ Filter.prototype.toBer = function(ber) {
/*
* Test a rule against one or more values.
*/
Filter.multi_test = function (rule, value) {
if(Array.isArray(value)) {
Filter.multi_test = function(rule, value) {
if (Array.isArray(value)) {
var response = false;
value.forEach(function(v) {
if(rule(v)) { response = true; }
if (rule(v)) { response = true; }
});
return response;
} else {
return rule(value);
}
}
};

View File

@ -81,7 +81,9 @@ SubstringFilter.prototype.matches = function(target) {
re += this['final'] + '$';
var matcher = new RegExp(re);
return Filter.multi_test( function(v) { return matcher.test(v); }, target[this.attribute]);
return Filter.multi_test(
function(v) { return matcher.test(v); },
target[this.attribute]);
}
return false;