@temporal-cortex/toon
Advanced tools
+1
-1
| { | ||
| "name": "@temporal-cortex/toon", | ||
| "version": "0.2.1", | ||
| "version": "0.3.0", | ||
| "description": "TOON (Token-Oriented Object Notation) encoder/decoder — compact JSON for LLMs", | ||
@@ -5,0 +5,0 @@ "type": "module", |
@@ -98,3 +98,3 @@ /* @ts-self-types="./toon_wasm.d.ts" */ | ||
| function dropObject(idx) { | ||
| if (idx < 132) return; | ||
| if (idx < 1028) return; | ||
| heap[idx] = heap_next; | ||
@@ -127,3 +127,3 @@ heap_next = idx; | ||
| let heap = new Array(128).fill(undefined); | ||
| let heap = new Array(1024).fill(undefined); | ||
| heap.push(undefined, null, true, false); | ||
@@ -200,2 +200,2 @@ | ||
| const wasmModule = new WebAssembly.Module(wasmBytes); | ||
| const wasm = new WebAssembly.Instance(wasmModule, __wbg_get_imports()).exports; | ||
| let wasm = new WebAssembly.Instance(wasmModule, __wbg_get_imports()).exports; |
Sorry, the diff of this file is not supported yet
168291
0.01%