Files
pig-farm-controller-fe/node_modules/webpack-chain/src/Chainable.js
2025-09-19 14:25:20 +08:00

15 lines
181 B
JavaScript

module.exports = class {
constructor(parent) {
this.parent = parent;
}
batch(handler) {
handler(this);
return this;
}
end() {
return this.parent;
}
};