perf: no spread

This commit is contained in:
cha0s 2019-05-02 21:09:08 -05:00
parent 40ff470e74
commit 6b9a38c3c1

View File

@ -7,8 +7,8 @@ export class Condition {
this.operands = [];
}
check(...args) {
return this.get(...args);
check(context) {
return this.get(context);
}
clone(other) {