🎩 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.3.0
to
0.3.1
+4
-4
package.json
{
"name": "@temporal-cortex/toon",
"version": "0.3.0",
"version": "0.3.1",
"description": "TOON (Token-Oriented Object Notation) encoder/decoder — compact JSON for LLMs",

@@ -23,8 +23,8 @@ "type": "module",

"type": "git",
"url": "https://github.com/billylui/temporal-cortex-core.git",
"url": "https://github.com/temporal-cortex/core.git",
"directory": "packages/temporal-cortex-toon-js"
},
"homepage": "https://github.com/billylui/temporal-cortex-core",
"homepage": "https://github.com/temporal-cortex/core",
"bugs": {
"url": "https://github.com/billylui/temporal-cortex-core/issues"
"url": "https://github.com/temporal-cortex/core/issues"
},

@@ -31,0 +31,0 @@ "devDependencies": {

@@ -98,3 +98,3 @@ /* @ts-self-types="./toon_wasm.d.ts" */

function dropObject(idx) {
if (idx < 1028) return;
if (idx < 132) return;
heap[idx] = heap_next;

@@ -127,3 +127,3 @@ heap_next = idx;

let heap = new Array(1024).fill(undefined);
let heap = new Array(128).fill(undefined);
heap.push(undefined, null, true, false);

@@ -200,2 +200,2 @@

const wasmModule = new WebAssembly.Module(wasmBytes);
let wasm = new WebAssembly.Instance(wasmModule, __wbg_get_imports()).exports;
const wasm = new WebAssembly.Instance(wasmModule, __wbg_get_imports()).exports;

Sorry, the diff of this file is not supported yet