8096 isnt 8kb, 8192 is (#8296)

Co-authored-by: Jarred Sumner <jarred@jarredsumner.com>
This commit is contained in:
Meghan Denny
2024-01-19 23:16:11 -08:00
committed by GitHub
parent c71bad205c
commit b433beb016
21 changed files with 26 additions and 28 deletions

View File

@@ -176,7 +176,7 @@ export class Bun {
return Bun.wasm_source.instance.exports.memory as WebAssembly.Memory;
}
private static scratch: Uint8Array = new Uint8Array(8096);
private static scratch: Uint8Array = new Uint8Array(8192);
private static memory_array: Uint8Array;
private static _decoder: TextDecoder;