This commit is contained in:
Jerry Kurian
2019-08-22 12:07:30 -04:00
parent 1e7fad2403
commit d097fa6aa5
5 changed files with 93 additions and 43 deletions

View File

@@ -297,3 +297,9 @@ export function compose(
options,
);
}
export function composeDuplex(
streams: Array<Writable | Transform>,
options?: WritableOptions,
) {
return baseFunctions.composeDuplex(streams, options);
}