UNPKG

181 BJavaScriptView Raw
1module.exports = class {
2 constructor(parent) {
3 this.parent = parent;
4 }
5
6 batch(handler) {
7 handler(this);
8 return this;
9 }
10
11 end() {
12 return this.parent;
13 }
14};