chore(jshint): correct warning
This commit is contained in:
parent
f09120af90
commit
c3412235a4
|
@ -970,6 +970,10 @@ function BpmnRenderer(events, styles, bpmnRegistry, pathMap) {
|
|||
|
||||
function matches(definition, filter) {
|
||||
return _.all(filter, function(val, key) {
|
||||
|
||||
// we want a == conversion here, to be able to catch
|
||||
// undefined == false and friends
|
||||
/* jshint -W116 */
|
||||
return definition[key] == val;
|
||||
});
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue