🎩 You're Invited:Meet the Socket team at Black Hat in Las Vegas, August 3-6.RSVP
Sign In

@temporal-cortex/toon

Package Overview
Dependencies
Maintainers
1
Versions
6
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@temporal-cortex/toon - npm Package Compare versions

Comparing version
0.2.1
to
0.3.0
+1
-1
package.json
{
"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