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