You're Invited:Meet the Socket Team at RSAC and BSidesSF 2026, March 23–26.RSVP
Socket
Book a DemoSign in
Socket

@esbuild/android-arm

Package Overview
Dependencies
Maintainers
1
Versions
118
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@esbuild/android-arm - npm Package Compare versions

Comparing version
0.26.0
to
0.27.0
+1
-1
package.json
{
"name": "@esbuild/android-arm",
"version": "0.26.0",
"version": "0.27.0",
"description": "A WebAssembly shim for esbuild on Android ARM.",

@@ -5,0 +5,0 @@ "repository": {

@@ -14,2 +14,3 @@ // Copyright 2021 The Go Authors. All rights reserved.

globalThis.fs = require("fs");
globalThis.path = require("path");
globalThis.TextEncoder = require("util").TextEncoder;

@@ -16,0 +17,0 @@ globalThis.TextDecoder = require("util").TextDecoder;

@@ -17,3 +17,3 @@ // Copyright 2018 The Go Authors. All rights reserved.

globalThis.fs = {
constants: { O_WRONLY: -1, O_RDWR: -1, O_CREAT: -1, O_TRUNC: -1, O_APPEND: -1, O_EXCL: -1 }, // unused
constants: { O_WRONLY: -1, O_RDWR: -1, O_CREAT: -1, O_TRUNC: -1, O_APPEND: -1, O_EXCL: -1, O_DIRECTORY: -1 }, // unused
writeSync(fd, buf) {

@@ -77,2 +77,10 @@ outputBuf += decoder.decode(buf);

if (!globalThis.path) {
globalThis.path = {
resolve(...pathSegments) {
return pathSegments.join("/");
}
}
}
if (!globalThis.crypto) {

@@ -213,2 +221,7 @@ throw new Error("globalThis.crypto is not available, polyfill required (crypto.getRandomValues only)");

const testCallExport = (a, b) => {
this._inst.exports.testExport0();
return this._inst.exports.testExport(a, b);
}
const timeOrigin = Date.now() - performance.now();

@@ -218,2 +231,3 @@ this.importObject = {

add: (a, b) => a + b,
callExport: testCallExport,
},

@@ -220,0 +234,0 @@ gojs: {

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