fix: slow path

This commit is contained in:
cha0s 2019-05-02 21:15:13 -05:00
parent 6b9a38c3c1
commit eb6bd48bd4

View File

@ -53,7 +53,7 @@ export function EventEmitterMixin(Superclass) {
}
// Slow path...
else {
fn.apply(that, args.slice(offset));
fn.apply(that, args);
}
}
}