Sign In

@rollup/wasm-node

Package Overview
Dependencies
Maintainers
4
Versions
204
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@rollup/wasm-node - npm Package Compare versions

Comparing version
4.52.4-3
to
4.52.4
+2
-2
dist/es/getLogFilter.js
/*
@license
Rollup.js v4.52.4-3
Sun, 28 Sep 2025 16:08:36 GMT - commit 31d43dd46a25ecf2cf3bef6843f9dcff03db07af
Rollup.js v4.52.4
Fri, 03 Oct 2025 05:47:35 GMT - commit cd81da74af1d11fda0ee1752cc26f6dc8217e9ca

@@ -6,0 +6,0 @@ https://github.com/rollup/rollup

/*
@license
Rollup.js v4.52.4-3
Sun, 28 Sep 2025 16:08:36 GMT - commit 31d43dd46a25ecf2cf3bef6843f9dcff03db07af
Rollup.js v4.52.4
Fri, 03 Oct 2025 05:47:35 GMT - commit cd81da74af1d11fda0ee1752cc26f6dc8217e9ca

@@ -6,0 +6,0 @@ https://github.com/rollup/rollup

/*
@license
Rollup.js v4.52.4-3
Sun, 28 Sep 2025 16:08:36 GMT - commit 31d43dd46a25ecf2cf3bef6843f9dcff03db07af
Rollup.js v4.52.4
Fri, 03 Oct 2025 05:47:35 GMT - commit cd81da74af1d11fda0ee1752cc26f6dc8217e9ca

@@ -6,0 +6,0 @@ https://github.com/rollup/rollup

/*
@license
Rollup.js v4.52.4-3
Sun, 28 Sep 2025 16:08:36 GMT - commit 31d43dd46a25ecf2cf3bef6843f9dcff03db07af
Rollup.js v4.52.4
Fri, 03 Oct 2025 05:47:35 GMT - commit cd81da74af1d11fda0ee1752cc26f6dc8217e9ca

@@ -6,0 +6,0 @@ https://github.com/rollup/rollup

/*
@license
Rollup.js v4.52.4-3
Sun, 28 Sep 2025 16:08:36 GMT - commit 31d43dd46a25ecf2cf3bef6843f9dcff03db07af
Rollup.js v4.52.4
Fri, 03 Oct 2025 05:47:35 GMT - commit cd81da74af1d11fda0ee1752cc26f6dc8217e9ca

@@ -6,0 +6,0 @@ https://github.com/rollup/rollup

/*
@license
Rollup.js v4.52.4-3
Sun, 28 Sep 2025 16:08:36 GMT - commit 31d43dd46a25ecf2cf3bef6843f9dcff03db07af
Rollup.js v4.52.4
Fri, 03 Oct 2025 05:47:35 GMT - commit cd81da74af1d11fda0ee1752cc26f6dc8217e9ca

@@ -6,0 +6,0 @@ https://github.com/rollup/rollup

/*
@license
Rollup.js v4.52.4-3
Sun, 28 Sep 2025 16:08:36 GMT - commit 31d43dd46a25ecf2cf3bef6843f9dcff03db07af
Rollup.js v4.52.4
Fri, 03 Oct 2025 05:47:35 GMT - commit cd81da74af1d11fda0ee1752cc26f6dc8217e9ca

@@ -6,0 +6,0 @@ https://github.com/rollup/rollup

/*
@license
Rollup.js v4.52.4-3
Sun, 28 Sep 2025 16:08:36 GMT - commit 31d43dd46a25ecf2cf3bef6843f9dcff03db07af
Rollup.js v4.52.4
Fri, 03 Oct 2025 05:47:35 GMT - commit cd81da74af1d11fda0ee1752cc26f6dc8217e9ca

@@ -6,0 +6,0 @@ https://github.com/rollup/rollup

/*
@license
Rollup.js v4.52.4-3
Sun, 28 Sep 2025 16:08:36 GMT - commit 31d43dd46a25ecf2cf3bef6843f9dcff03db07af
Rollup.js v4.52.4
Fri, 03 Oct 2025 05:47:35 GMT - commit cd81da74af1d11fda0ee1752cc26f6dc8217e9ca

@@ -6,0 +6,0 @@ https://github.com/rollup/rollup

/*
@license
Rollup.js v4.52.4-3
Sun, 28 Sep 2025 16:08:36 GMT - commit 31d43dd46a25ecf2cf3bef6843f9dcff03db07af
Rollup.js v4.52.4
Fri, 03 Oct 2025 05:47:35 GMT - commit cd81da74af1d11fda0ee1752cc26f6dc8217e9ca

@@ -6,0 +6,0 @@ https://github.com/rollup/rollup

/*
@license
Rollup.js v4.52.4-3
Sun, 28 Sep 2025 16:08:36 GMT - commit 31d43dd46a25ecf2cf3bef6843f9dcff03db07af
Rollup.js v4.52.4
Fri, 03 Oct 2025 05:47:35 GMT - commit cd81da74af1d11fda0ee1752cc26f6dc8217e9ca

@@ -6,0 +6,0 @@ https://github.com/rollup/rollup

let imports = {};
imports['__wbindgen_placeholder__'] = module.exports;
let wasm;
const { TextDecoder, TextEncoder } = require(`util`);

@@ -29,3 +27,3 @@ let cachedUint8ArrayMemory0 = null;

const heap = new Array(128).fill(undefined);
let heap = new Array(128).fill(undefined);

@@ -54,16 +52,14 @@ heap.push(undefined, null, true, false);

const cachedTextEncoder = new TextEncoder('utf-8');
const cachedTextEncoder = new TextEncoder();
const encodeString = (typeof cachedTextEncoder.encodeInto === 'function'
? function (arg, view) {
return cachedTextEncoder.encodeInto(arg, view);
if (!('encodeInto' in cachedTextEncoder)) {
cachedTextEncoder.encodeInto = function (arg, view) {
const buf = cachedTextEncoder.encode(arg);
view.set(buf);
return {
read: arg.length,
written: buf.length
};
}
}
: function (arg, view) {
const buf = cachedTextEncoder.encode(arg);
view.set(buf);
return {
read: arg.length,
written: buf.length
};
});

@@ -99,3 +95,3 @@ function passStringToWasm0(arg, malloc, realloc) {

const view = getUint8ArrayMemory0().subarray(ptr + offset, ptr + len);
const ret = encodeString(arg, view);
const ret = cachedTextEncoder.encodeInto(arg, view);

@@ -136,3 +132,3 @@ offset += ret.written;

*/
module.exports.parse = function(code, allow_return_outside_function, jsx) {
exports.parse = function(code, allow_return_outside_function, jsx) {
try {

@@ -157,3 +153,3 @@ const retptr = wasm.__wbindgen_add_to_stack_pointer(-16);

*/
module.exports.xxhashBase64Url = function(input) {
exports.xxhashBase64Url = function(input) {
let deferred1_0;

@@ -179,3 +175,3 @@ let deferred1_1;

*/
module.exports.xxhashBase36 = function(input) {
exports.xxhashBase36 = function(input) {
let deferred1_0;

@@ -201,3 +197,3 @@ let deferred1_1;

*/
module.exports.xxhashBase16 = function(input) {
exports.xxhashBase16 = function(input) {
let deferred1_0;

@@ -219,3 +215,3 @@ let deferred1_1;

module.exports.__wbg_error_7534b8e9a36f1ab4 = function(arg0, arg1) {
exports.__wbg_error_7534b8e9a36f1ab4 = function(arg0, arg1) {
let deferred0_0;

@@ -232,3 +228,3 @@ let deferred0_1;

module.exports.__wbg_length_904c0910ed998bf3 = function(arg0) {
exports.__wbg_length_6bb7e81f9d7713e4 = function(arg0) {
const ret = getObject(arg0).length;

@@ -238,3 +234,3 @@ return ret;

module.exports.__wbg_new_8a6f238a6ece86ea = function() {
exports.__wbg_new_8a6f238a6ece86ea = function() {
const ret = new Error();

@@ -244,7 +240,7 @@ return addHeapObject(ret);

module.exports.__wbg_prototypesetcall_c5f74efd31aea86b = function(arg0, arg1, arg2) {
exports.__wbg_prototypesetcall_3d4a26c1ed734349 = function(arg0, arg1, arg2) {
Uint8Array.prototype.set.call(getArrayU8FromWasm0(arg0, arg1), getObject(arg2));
};
module.exports.__wbg_stack_0ed75d68575b0f3c = function(arg0, arg1) {
exports.__wbg_stack_0ed75d68575b0f3c = function(arg0, arg1) {
const ret = getObject(arg1).stack;

@@ -257,17 +253,14 @@ const ptr1 = passStringToWasm0(ret, wasm.__wbindgen_export_1, wasm.__wbindgen_export_2);

module.exports.__wbg_wbindgenthrow_4c11a24fca429ccf = function(arg0, arg1) {
exports.__wbg_wbindgenthrow_451ec1a8469d7eb6 = function(arg0, arg1) {
throw new Error(getStringFromWasm0(arg0, arg1));
};
module.exports.__wbindgen_object_drop_ref = function(arg0) {
exports.__wbindgen_object_drop_ref = function(arg0) {
takeObject(arg0);
};
const path = require('path').join(__dirname, 'bindings_wasm_bg.wasm');
const bytes = require('fs').readFileSync(path);
const wasmPath = `${__dirname}/bindings_wasm_bg.wasm`;
const wasmBytes = require('fs').readFileSync(wasmPath);
const wasmModule = new WebAssembly.Module(wasmBytes);
const wasm = exports.__wasm = new WebAssembly.Instance(wasmModule, imports).exports;
const wasmModule = new WebAssembly.Module(bytes);
const wasmInstance = new WebAssembly.Instance(wasmModule, imports);
wasm = wasmInstance.exports;
module.exports.__wasm = wasm;
{
"name": "@rollup/wasm-node",
"version": "4.52.4-3",
"version": "4.52.4",
"description": "Next-generation ES module bundler with Node wasm",

@@ -43,7 +43,7 @@ "main": "dist/rollup.js",

"@codemirror/state": "^6.5.2",
"@codemirror/view": "^6.38.3",
"@codemirror/view": "^6.38.4",
"@eslint/js": "^9.36.0",
"@inquirer/prompts": "^7.8.6",
"@jridgewell/sourcemap-codec": "^1.5.5",
"@mermaid-js/mermaid-cli": "^11.10.1",
"@mermaid-js/mermaid-cli": "^11.4.0",
"@napi-rs/cli": "^3.2.0",

@@ -61,7 +61,7 @@ "@rollup/plugin-alias": "^5.1.1",

"@types/mocha": "^10.0.10",
"@types/node": "^20.19.17",
"@types/node": "^20.19.18",
"@types/picomatch": "^4.0.2",
"@types/semver": "^7.7.1",
"@types/yargs-parser": "^21.0.3",
"@vue/language-server": "^3.0.8",
"@vue/language-server": "^3.1.0",
"acorn": "^8.15.0",

@@ -75,3 +75,3 @@ "acorn-import-assertions": "^1.9.0",

"core-js": "3.38.1",
"cross-env": "^10.0.0",
"cross-env": "^10.1.0",
"date-time": "^4.0.0",

@@ -92,6 +92,6 @@ "es5-shim": "^4.6.7",

"is-reference": "^3.0.3",
"lint-staged": "^16.2.0",
"lint-staged": "^16.2.3",
"locate-character": "^3.0.0",
"magic-string": "^0.30.19",
"memfs": "^4.43.0",
"memfs": "^4.47.0",
"mocha": "^11.7.2",

@@ -108,3 +108,3 @@ "nodemon": "^3.1.10",

"requirejs": "^2.3.7",
"rollup": "^4.52.1",
"rollup": "^4.52.3",
"rollup-plugin-license": "^3.6.0",

@@ -121,6 +121,6 @@ "rollup-plugin-string": "^3.0.0",

"typescript": "^5.9.2",
"typescript-eslint": "^8.44.1",
"typescript-eslint": "^8.45.0",
"vite": "^7.1.7",
"vitepress": "^1.6.4",
"vue": "^3.5.21",
"vue": "^3.5.22",
"vue-eslint-parser": "^10.2.0",

@@ -127,0 +127,0 @@ "vue-tsc": "^2.2.12",

Sorry, the diff of this file is not supported yet

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

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

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

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

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

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

Sorry, the diff of this file is not supported yet