Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@biomejs/wasm-web

Package Overview
Dependencies
Maintainers
4
Versions
74
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@biomejs/wasm-web - npm Package Compare versions

Comparing version 1.8.3 to 1.8.4-nightly.a579bf7

50

biome_wasm.js

@@ -9,2 +9,16 @@ let wasm;

let heap_next = heap.length;
function dropObject(idx) {
if (idx < 132) return;
heap[idx] = heap_next;
heap_next = idx;
}
function takeObject(idx) {
const ret = getObject(idx);
dropObject(idx);
return ret;
}
function isLikeNone(x) {

@@ -97,16 +111,2 @@ return x === undefined || x === null;

let heap_next = heap.length;
function dropObject(idx) {
if (idx < 132) return;
heap[idx] = heap_next;
heap_next = idx;
}
function takeObject(idx) {
const ret = getObject(idx);
dropObject(idx);
return ret;
}
function addHeapObject(obj) {

@@ -728,2 +728,13 @@ if (heap_next === heap.length) heap.push(heap.length + 1);

imports.wbg = {};
imports.wbg.__wbindgen_is_undefined = function(arg0) {
const ret = getObject(arg0) === undefined;
return ret;
};
imports.wbg.__wbindgen_in = function(arg0, arg1) {
const ret = getObject(arg0) in getObject(arg1);
return ret;
};
imports.wbg.__wbindgen_object_drop_ref = function(arg0) {
takeObject(arg0);
};
imports.wbg.__wbindgen_boolean_get = function(arg0) {

@@ -757,9 +768,2 @@ const v = getObject(arg0);

};
imports.wbg.__wbindgen_in = function(arg0, arg1) {
const ret = getObject(arg0) in getObject(arg1);
return ret;
};
imports.wbg.__wbindgen_object_drop_ref = function(arg0) {
takeObject(arg0);
};
imports.wbg.__wbindgen_bigint_from_i64 = function(arg0) {

@@ -785,6 +789,2 @@ const ret = arg0;

};
imports.wbg.__wbindgen_is_undefined = function(arg0) {
const ret = getObject(arg0) === undefined;
return ret;
};
imports.wbg.__wbindgen_as_number = function(arg0) {

@@ -791,0 +791,0 @@ const ret = +getObject(arg0);

{
"name": "@biomejs/wasm-web",
"type": "module",
"collaborators": [

@@ -7,3 +8,3 @@ "Biome Developers and Contributors"

"description": "WebAssembly bindings to the Biome workspace API",
"version": "1.8.3",
"version": "1.8.4-nightly.a579bf7",
"license": "MIT OR Apache-2.0",

@@ -19,3 +20,3 @@ "repository": {

],
"module": "biome_wasm.js",
"main": "biome_wasm.js",
"homepage": "https://biomejs.dev/",

@@ -22,0 +23,0 @@ "types": "biome_wasm.d.ts",

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is too big to display

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc