MCPcopy Index your code
hub / github.com/nodejs/node / statusIsInformational

Function statusIsInformational

lib/_http_client.js:709–715  ·  view source on GitHub ↗
(status)

Source from the content-addressed store, hash-verified

707}
708
709function 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
718function parserOnIncomingClient(res, shouldKeepAlive) {

Callers 2

socketOnDataFunction · 0.85
parserOnIncomingClientFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…