(options?: {
readonly ignoreEmptyLines?: boolean | undefined
})
| 207 | * @since 4.0.0 |
| 208 | */ |
| 209 | export const decode = <IE = never, Done = unknown>(options?: { |
| 210 | readonly ignoreEmptyLines?: boolean | undefined |
| 211 | }): Channel.Channel< |
| 212 | Arr.NonEmptyReadonlyArray<unknown>, |
| 213 | IE | NdjsonError, |
| 214 | Done, |
| 215 | Arr.NonEmptyReadonlyArray<Uint8Array>, |
| 216 | IE, |
| 217 | Done |
| 218 | > => { |
| 219 | return Channel.pipeTo(Channel.decodeText(), decodeString(options)) |
| 220 | } |
| 221 | |
| 222 | /** |
| 223 | * Creates an NDJSON byte decoder channel for values of a schema. |
no test coverage detected