Big News: Socket raises $60M Series C at a $1B valuation to secure software supply chains for AI-driven development.Announcement
Sign In

@qevm/base64

Package Overview
Dependencies
Maintainers
3
Versions
2
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@qevm/base64 - npm Package Compare versions

Comparing version
5.7.0
to
5.7.1
+1
-1
lib/_version.d.ts

@@ -1,2 +0,2 @@

export declare const version = "base64/5.7.0";
export declare const version = "base64/5.7.1";
//# sourceMappingURL=_version.d.ts.map
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.version = void 0;
exports.version = "base64/5.7.0";
exports.version = "base64/5.7.1";
//# sourceMappingURL=_version.js.map

@@ -1,1 +0,1 @@

{"version":3,"file":"base64.d.ts","sourceRoot":"","sources":["../src.ts/base64.ts"],"names":[],"mappings":"AAEA,OAAO,EAAY,SAAS,EAAE,MAAM,aAAa,CAAC;AAGlD,wBAAgB,MAAM,CAAC,QAAQ,EAAE,MAAM,GAAG,UAAU,CAEnD;AAED,wBAAgB,MAAM,CAAC,IAAI,EAAE,SAAS,GAAG,MAAM,CAE9C"}
{"version":3,"file":"base64.d.ts","sourceRoot":"","sources":["../src.ts/base64.ts"],"names":[],"mappings":"AAEA,OAAO,EAAY,SAAS,EAAE,MAAM,aAAa,CAAC;AAElD,wBAAgB,MAAM,CAAC,QAAQ,EAAE,MAAM,GAAG,UAAU,CAEnD;AAED,wBAAgB,MAAM,CAAC,IAAI,EAAE,SAAS,GAAG,MAAM,CAE9C"}

@@ -9,3 +9,2 @@ "use strict";

}
;
function encode(data) {

@@ -12,0 +11,0 @@ return Buffer.from((0, bytes_1.arrayify)(data)).toString("base64");

@@ -1,1 +0,1 @@

{"version":3,"file":"base64.js","sourceRoot":"","sources":["../src.ts/base64.ts"],"names":[],"mappings":"AAAA,YAAY,CAAC;;AAKb,wBAEC;AAED,wBAEC;AATD,uCAAkD;AAGlD,SAAgB,MAAM,CAAC,QAAgB;IACnC,OAAO,IAAA,gBAAQ,EAAC,IAAI,UAAU,CAAC,MAAM,CAAC,IAAI,CAAC,QAAQ,EAAE,QAAQ,CAAC,CAAC,CAAC,CAAC;AACrE,CAAC;AAAA,CAAC;AAEF,SAAgB,MAAM,CAAC,IAAe;IAClC,OAAO,MAAM,CAAC,IAAI,CAAC,IAAA,gBAAQ,EAAC,IAAI,CAAC,CAAC,CAAC,QAAQ,CAAC,QAAQ,CAAC,CAAC;AAC1D,CAAC"}
{"version":3,"file":"base64.js","sourceRoot":"","sources":["../src.ts/base64.ts"],"names":[],"mappings":"AAAA,YAAY,CAAC;;AAIb,wBAEC;AAED,wBAEC;AARD,uCAAkD;AAElD,SAAgB,MAAM,CAAC,QAAgB;IACnC,OAAO,IAAA,gBAAQ,EAAC,IAAI,UAAU,CAAC,MAAM,CAAC,IAAI,CAAC,QAAQ,EAAE,QAAQ,CAAC,CAAC,CAAC,CAAC;AACrE,CAAC;AAED,SAAgB,MAAM,CAAC,IAAe;IAClC,OAAO,MAAM,CAAC,IAAI,CAAC,IAAA,gBAAQ,EAAC,IAAI,CAAC,CAAC,CAAC,QAAQ,CAAC,QAAQ,CAAC,CAAC;AAC1D,CAAC"}
{
"_ethers.alias": {
"base64.js": "browser-base64.js"
},
"author": "Eugene Kuleshov",
"browser": {
"./lib/base64": "./lib/browser-base64.js"
},
"dependencies": {
"@qevm/bytes": "5.7.1"
},
"description": "Base64 coder.",
"keywords": [
"Ethereum",
"qethers"
],
"license": "MIT",
"main": "./lib/index.js",
"module": "./lib.esm/index.js",
"name": "@qevm/base64",
"publishConfig": {
"access": "public"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"sideEffects": false,
"tarballHash": "0x67fc747be8ad32f055e61ea73984a8a1e7030ea19dff1a8c7d8301ad0139078b",
"types": "./lib/index.d.ts",
"version": "5.7.0",
"devDependencies": {
"@types/node": "^22.15.30"
}
"_ethers.alias": {
"base64.js": "browser-base64.js"
},
"contributors": [
"Eugene Kuleshov <kulevgen32@gmail.com>",
"Richard Moore <me@ricmoo.com>"
],
"browser": {
"./lib/base64": "./lib/browser-base64.js"
},
"dependencies": {
"@qevm/bytes": "^5.7.2"
},
"description": "Base64 coder.",
"keywords": [
"QuantumEVM",
"QEVM",
"qethers"
],
"license": "MIT",
"main": "./lib/index.js",
"module": "./lib.esm/index.js",
"name": "@qevm/base64",
"publishConfig": {
"access": "public"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"sideEffects": false,
"tarballHash": "0x67fc747be8ad32f055e61ea73984a8a1e7030ea19dff1a8c7d8301ad0139078b",
"types": "./lib/index.d.ts",
"version": "5.7.1",
"devDependencies": {
"@types/node": "^22.15.30"
}
}

@@ -10,3 +10,3 @@ Base64 Coder

```javascript
import * as base64 from "@ethersproject/base64";
import * as base64 from "@qevm/base64";

@@ -25,3 +25,3 @@ let encodedData = "...";

```javascript
import * as base64 from "@ethersproject/base64";
import * as base64 from "@qevm/base64";

@@ -28,0 +28,0 @@ let data = [ ];

@@ -1,1 +0,1 @@

export const version = "base64/5.7.0";
export const version = "base64/5.7.1";

@@ -5,6 +5,5 @@ "use strict";

export function decode(textData: string): Uint8Array {
return arrayify(new Uint8Array(Buffer.from(textData, "base64")));
};
}

@@ -11,0 +10,0 @@ export function encode(data: BytesLike): string {

@@ -22,3 +22,1 @@ "use strict";

}