diff --git a/ext/fetch/22_body.js b/ext/fetch/22_body.js index acbef4ec41..c9702488c7 100644 --- a/ext/fetch/22_body.js +++ b/ext/fetch/22_body.js @@ -36,19 +36,17 @@ } = window.__bootstrap.primordials; class InnerBody { - /** @type {ReadableStream | { body: Uint8Array, consumed: boolean }} */ - streamOrStatic; - /** @type {null | Uint8Array | Blob | FormData} */ - source = null; - /** @type {null | number} */ - length = null; - /** * @param {ReadableStream | { body: Uint8Array, consumed: boolean }} stream */ constructor(stream) { + /** @type {ReadableStream | { body: Uint8Array, consumed: boolean }} */ this.streamOrStatic = stream ?? { body: new Uint8Array(), consumed: false }; + /** @type {null | Uint8Array | Blob | FormData} */ + this.source = null; + /** @type {null | number} */ + this.length = null; } get stream() {