This commit is contained in:
Lewis Diamond
2019-08-30 15:24:38 -04:00
parent c7903376e9
commit 2ee04a2d79
2 changed files with 62 additions and 31 deletions

View File

@@ -288,12 +288,4 @@ export function accumulatorBy<T, S extends FlushStrategy>(
return baseFunctions.accumulatorBy(batchRate, flushStrategy, iteratee);
}
export function compose(
streams: Array<Writable | Transform>,
options?: DuplexOptions,
) {
return baseFunctions.compose(
streams,
options,
);
}
export const compose = baseFunctions.compose;