Small fixes
A selection of 80 fixes from 174 pull requests.
51.Text from a binary response
XHR forbids responseText in arraybuffer mode. Decode the returned bytes for text and JSON, and pass them directly to stream readers.
1234567if (this.source.responseType === "arraybuffer") { return this._textEffect = this.arrayBuffer.pipe( Effect.map((buffer) => new TextDecoder().decode(buffer)), Effect.cached, Effect.runSync )}