| 362 | }; |
| 363 | |
| 364 | interface NamedStream { |
| 365 | name: string; |
| 366 | stream: NodeJS.ReadableStream |
| 367 | } |
| 368 | |
| 369 | function concat(inputs: NamedStream[], output: NodeJS.WritableStream, code: number): void { |
| 370 | 'use strict'; |
nothing calls this directly
no outgoing calls
no test coverage detected