(status)
| 40 | } |
| 41 | |
| 42 | function isRedirectStatus(status) { |
| 43 | return [301, 302, 303, 307, 308].includes(status); |
| 44 | } |
| 45 | |
| 46 | // Stream chunks may be strings (e.g. a ReadableStream or Node stream that wasn't |
| 47 | // fed bytes); encode them so they aren't coerced to zero bytes by Uint8Array.set. |
no outgoing calls
no test coverage detected
searching dependent graphs…