caminho
Version:
Tool for creating efficient data pipelines in a JavaScript environment
10 lines • 379 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.getOnStepStarted = getOnStepStarted;
const stub = () => { };
function getOnStepStarted(name, onStepStarted = stub) {
return function internalOnStepStarted(valueBags) {
onStepStarted({ name, valueBags, received: valueBags.length });
};
}
//# sourceMappingURL=onStepStarted.js.map