Lines Matching refs:response
22 const response = await PromiseResolve(source);
23 if (!(response instanceof lazyUndici().Response)) {
25 'source', ['Response', 'Promise resolving to Response'], response);
28 const contentType = response.headers.get('Content-Type');
34 if (!response.ok) {
36 `has status code ${response.status}`);
39 if (response.bodyUsed !== false) {
43 if (response.url) {
44 streamState.setURL(response.url);
47 // Pass all data from the response body to the WebAssembly compiler.
48 const { body } = response;