| 387 | * https://github.com/encode/httpx/blob/920333ea98118e9cf617f246905d7b202510941c/httpx/_decoders.py#L258 |
| 388 | */ |
| 389 | class LineDecoder { |
| 390 | // prettier-ignore |
| 391 | static NEWLINE_CHARS = new Set(['\n', '\r']); |
| 392 | static NEWLINE_REGEXP = /\r\n|[\n\r]/g; |
nothing calls this directly
no outgoing calls
no test coverage detected