()
| 104 | * @category constructors |
| 105 | */ |
| 106 | export const pack = <IE = never, Done = unknown>(): Channel.Channel< |
| 107 | Chunk.Chunk<Uint8Array>, |
| 108 | Chunk.Chunk<unknown>, |
| 109 | IE | NdjsonError, |
| 110 | IE, |
| 111 | Done, |
| 112 | Done |
| 113 | > => Channel.mapOut(packString(), Chunk.map((_) => encoder.encode(_))) |
| 114 | |
| 115 | /** |
| 116 | * @since 1.0.0 |
no test coverage detected