caminho
Version:
Tool for creating efficient data pipelines in a JavaScript environment
8 lines • 338 B
JavaScript
var stub = function () { };
export function getOnStepStarted(name, onStepStarted) {
if (onStepStarted === void 0) { onStepStarted = stub; }
return function internalOnStepStarted(valueBags) {
onStepStarted({ name: name, valueBags: valueBags, received: valueBags.length });
};
}
//# sourceMappingURL=onStepStarted.js.map