(status)
| 707 | } |
| 708 | |
| 709 | function statusIsInformational(status) { |
| 710 | // 100 (Continue) RFC7231 Section 6.2.1 |
| 711 | // 102 (Processing) RFC2518 |
| 712 | // 103 (Early Hints) RFC8297 |
| 713 | // 104-199 (Unassigned) |
| 714 | return (status < 200 && status >= 100 && status !== 101); |
| 715 | } |
| 716 | |
| 717 | // client |
| 718 | function parserOnIncomingClient(res, shouldKeepAlive) { |
no outgoing calls
no test coverage detected
searching dependent graphs…