Skip to content
Snippets Groups Projects
Commit 1449da31 authored by svornost's avatar svornost
Browse files

simplify

parent b52ac258
No related branches found
No related tags found
No related merge requests found
......@@ -52,10 +52,7 @@ App.SlaveAssignment.reportSlave = function(slave) {
return true;
},
has(target, key) {
if (key in proxyProperties) {
return true;
}
return key in target;
return (key in proxyProperties) || (key in target);
}
};
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment