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

@taquito/utils

Package Overview
Dependencies
Maintainers
2
Versions
202
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@taquito/utils - npm Package Compare versions

Comparing version 6.2.0-beta.1 to 6.3.0-beta.5

1

dist/lib/constants.js
"use strict";
var _a, _b;
Object.defineProperty(exports, "__esModule", { value: true });
exports.prefixLength = exports.prefix = exports.Prefix = void 0;
var Prefix;

@@ -5,0 +6,0 @@ (function (Prefix) {

36

dist/lib/taquito-utils.js

@@ -7,6 +7,14 @@ "use strict";

*/
function __export(m) {
for (var p in m) if (!exports.hasOwnProperty(p)) exports[p] = m[p];
}
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
if (k2 === undefined) k2 = k;
Object.defineProperty(o, k2, { enumerable: true, get: function() { return m[k]; } });
}) : (function(o, m, k, k2) {
if (k2 === undefined) k2 = k;
o[k2] = m[k];
}));
var __exportStar = (this && this.__exportStar) || function(m, exports) {
for (var p in m) if (p !== "default" && !exports.hasOwnProperty(p)) __createBinding(exports, m, p);
};
Object.defineProperty(exports, "__esModule", { value: true });
exports.buf2hex = exports.ml2mic = exports.mic2arr = exports.sexp2mic = exports.mergebuf = exports.hex2buf = exports.encodeKeyHash = exports.encodeKey = exports.encodePubKey = exports.b58decode = exports.b58cdecode = exports.b58cencode = exports.encodeExpr = void 0;
var buffer_1 = require("buffer");

@@ -16,7 +24,7 @@ var constants_1 = require("./constants");

var bs58check = require('bs58check');
__export(require("./validators"));
__exportStar(require("./validators"), exports);
var constants_2 = require("./constants");
exports.prefix = constants_2.prefix;
exports.Prefix = constants_2.Prefix;
exports.prefixLength = constants_2.prefixLength;
Object.defineProperty(exports, "prefix", { enumerable: true, get: function () { return constants_2.prefix; } });
Object.defineProperty(exports, "Prefix", { enumerable: true, get: function () { return constants_2.Prefix; } });
Object.defineProperty(exports, "prefixLength", { enumerable: true, get: function () { return constants_2.prefixLength; } });
function encodeExpr(value) {

@@ -129,16 +137,2 @@ var blakeHash = blake.blake2b(exports.hex2buf(value), null, 32);

*
* @description Generate a random hex nonce
*
* @param length length of the nonce
*/
exports.hexNonce = function (length) {
var chars = '0123456789abcedf';
var hex = '';
while (length--) {
hex += chars[(Math.random() * 16) | 0];
}
return hex;
};
/**
*
* @description Merge 2 buffers together

@@ -145,0 +139,0 @@ *

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

Object.defineProperty(exports, "__esModule", { value: true });
exports.validatePublicKey = exports.validateSignature = exports.validateKeyHash = exports.validateContractAddress = exports.validateChain = exports.validateAddress = exports.isValidPrefix = exports.ValidationResult = void 0;
var constants_1 = require("./constants");

@@ -25,0 +26,0 @@ var bs58check = require('bs58check');

@@ -89,14 +89,14 @@ import { Buffer } from 'buffer';

/*! *****************************************************************************
Copyright (c) Microsoft Corporation. All rights reserved.
Licensed under the Apache License, Version 2.0 (the "License"); you may not use
this file except in compliance with the License. You may obtain a copy of the
License at http://www.apache.org/licenses/LICENSE-2.0
Copyright (c) Microsoft Corporation.
THIS CODE IS PROVIDED ON AN *AS IS* BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
KIND, EITHER EXPRESS OR IMPLIED, INCLUDING WITHOUT LIMITATION ANY IMPLIED
WARRANTIES OR CONDITIONS OF TITLE, FITNESS FOR A PARTICULAR PURPOSE,
MERCHANTABLITY OR NON-INFRINGEMENT.
Permission to use, copy, modify, and/or distribute this software for any
purpose with or without fee is hereby granted.
See the Apache Version 2.0 License for specific language governing permissions
and limitations under the License.
THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH
REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,
INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM
LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR
OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
PERFORMANCE OF THIS SOFTWARE.
***************************************************************************** */

@@ -292,16 +292,2 @@

*
* @description Generate a random hex nonce
*
* @param length length of the nonce
*/
var hexNonce = function (length) {
var chars = '0123456789abcedf';
var hex = '';
while (length--) {
hex += chars[(Math.random() * 16) | 0];
}
return hex;
};
/**
*
* @description Merge 2 buffers together

@@ -548,3 +534,3 @@ *

export { Prefix, ValidationResult, b58cdecode, b58cencode, b58decode, buf2hex, encodeExpr, encodeKey, encodeKeyHash, encodePubKey, hex2buf, hexNonce, isValidPrefix, mergebuf, mic2arr, ml2mic, prefix, prefixLength, sexp2mic, validateAddress, validateChain, validateContractAddress, validateKeyHash, validatePublicKey, validateSignature };
export { Prefix, ValidationResult, b58cdecode, b58cencode, b58decode, buf2hex, encodeExpr, encodeKey, encodeKeyHash, encodePubKey, hex2buf, isValidPrefix, mergebuf, mic2arr, ml2mic, prefix, prefixLength, sexp2mic, validateAddress, validateChain, validateContractAddress, validateKeyHash, validatePublicKey, validateSignature };
//# sourceMappingURL=taquito-utils.es5.js.map

@@ -92,14 +92,14 @@ (function (global, factory) {

/*! *****************************************************************************
Copyright (c) Microsoft Corporation. All rights reserved.
Licensed under the Apache License, Version 2.0 (the "License"); you may not use
this file except in compliance with the License. You may obtain a copy of the
License at http://www.apache.org/licenses/LICENSE-2.0
Copyright (c) Microsoft Corporation.
THIS CODE IS PROVIDED ON AN *AS IS* BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
KIND, EITHER EXPRESS OR IMPLIED, INCLUDING WITHOUT LIMITATION ANY IMPLIED
WARRANTIES OR CONDITIONS OF TITLE, FITNESS FOR A PARTICULAR PURPOSE,
MERCHANTABLITY OR NON-INFRINGEMENT.
Permission to use, copy, modify, and/or distribute this software for any
purpose with or without fee is hereby granted.
See the Apache Version 2.0 License for specific language governing permissions
and limitations under the License.
THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH
REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,
INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM
LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR
OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
PERFORMANCE OF THIS SOFTWARE.
***************************************************************************** */

@@ -294,16 +294,2 @@

*
* @description Generate a random hex nonce
*
* @param length length of the nonce
*/
var hexNonce = function (length) {
var chars = '0123456789abcedf';
var hex = '';
while (length--) {
hex += chars[(Math.random() * 16) | 0];
}
return hex;
};
/**
*
* @description Merge 2 buffers together

@@ -559,3 +545,2 @@ *

exports.hex2buf = hex2buf;
exports.hexNonce = hexNonce;
exports.isValidPrefix = isValidPrefix;

@@ -562,0 +547,0 @@ exports.mergebuf = mergebuf;

@@ -34,32 +34,32 @@ export declare enum Prefix {

export declare const prefix: {
[Prefix.TZ1]: Uint8Array;
[Prefix.TZ2]: Uint8Array;
[Prefix.TZ3]: Uint8Array;
[Prefix.KT]: Uint8Array;
[Prefix.KT1]: Uint8Array;
[Prefix.EDSK]: Uint8Array;
[Prefix.EDSK2]: Uint8Array;
[Prefix.SPSK]: Uint8Array;
[Prefix.P2SK]: Uint8Array;
[Prefix.EDPK]: Uint8Array;
[Prefix.SPPK]: Uint8Array;
[Prefix.P2PK]: Uint8Array;
[Prefix.EDESK]: Uint8Array;
[Prefix.SPESK]: Uint8Array;
[Prefix.P2ESK]: Uint8Array;
[Prefix.EDSIG]: Uint8Array;
[Prefix.SPSIG]: Uint8Array;
[Prefix.P2SIG]: Uint8Array;
[Prefix.SIG]: Uint8Array;
[Prefix.NET]: Uint8Array;
[Prefix.NCE]: Uint8Array;
[Prefix.B]: Uint8Array;
[Prefix.O]: Uint8Array;
[Prefix.LO]: Uint8Array;
[Prefix.LLO]: Uint8Array;
[Prefix.P]: Uint8Array;
[Prefix.CO]: Uint8Array;
[Prefix.ID]: Uint8Array;
[Prefix.EXPR]: Uint8Array;
[Prefix.TZ]: Uint8Array;
tz1: Uint8Array;
tz2: Uint8Array;
tz3: Uint8Array;
KT: Uint8Array;
KT1: Uint8Array;
edsk: Uint8Array;
edsk2: Uint8Array;
spsk: Uint8Array;
p2sk: Uint8Array;
edpk: Uint8Array;
sppk: Uint8Array;
p2pk: Uint8Array;
edesk: Uint8Array;
spesk: Uint8Array;
p2esk: Uint8Array;
edsig: Uint8Array;
spsig: Uint8Array;
p2sig: Uint8Array;
sig: Uint8Array;
Net: Uint8Array;
nce: Uint8Array;
b: Uint8Array;
o: Uint8Array;
Lo: Uint8Array;
LLo: Uint8Array;
P: Uint8Array;
Co: Uint8Array;
id: Uint8Array;
expr: Uint8Array;
TZ: Uint8Array;
};

@@ -66,0 +66,0 @@ export declare const prefixLength: {

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

/// <reference types="node" />
import { Buffer } from 'buffer';
export * from './validators';

@@ -46,9 +46,2 @@ export { prefix, Prefix, prefixLength } from './constants';

*
* @description Generate a random hex nonce
*
* @param length length of the nonce
*/
export declare const hexNonce: (length: number) => string;
/**
*
* @description Merge 2 buffers together

@@ -55,0 +48,0 @@ *

{
"name": "@taquito/utils",
"version": "6.2.0-beta.1",
"version": "6.3.0-beta.5",
"description": "converts michelson data and types into convenient JS/TS objects",

@@ -66,32 +66,32 @@ "keywords": [

"bs58check": "^2.1.2",
"buffer": "^5.2.1"
"buffer": "^5.6.0"
},
"devDependencies": {
"@types/jest": "^23.3.2",
"@types/node": "^10.14.13",
"colors": "^1.3.2",
"coveralls": "^3.0.2",
"cross-env": "^5.2.0",
"jest": "^24.8.0",
"jest-config": "^24.8.0",
"lint-staged": "^8.0.0",
"@types/jest": "^26.0.0",
"@types/node": "^14.0.1",
"colors": "^1.4.0",
"coveralls": "^3.1.0",
"cross-env": "^7.0.2",
"jest": "^26.0.1",
"jest-config": "^26.0.1",
"lint-staged": "^10.2.2",
"lodash.camelcase": "^4.3.0",
"prettier": "^1.14.3",
"prettier": "^2.0.5",
"prompt": "^1.0.0",
"replace-in-file": "^3.4.2",
"rimraf": "^2.6.2",
"rollup": "^1.20.1",
"replace-in-file": "^6.0.0",
"rimraf": "^3.0.2",
"rollup": "^2.10.2",
"rollup-plugin-json": "^4.0.0",
"rollup-plugin-sourcemaps": "^0.4.2",
"rollup-plugin-typescript2": "^0.22.1",
"shelljs": "^0.8.3",
"ts-jest": "^23.10.2",
"ts-node": "^7.0.1",
"tslint": "^5.11.0",
"tslint-config-prettier": "^1.15.0",
"tslint-config-standard": "^8.0.1",
"typedoc": "^0.15.0",
"typescript": "~3.6.0"
"rollup-plugin-sourcemaps": "^0.6.2",
"rollup-plugin-typescript2": "^0.27.1",
"shelljs": "^0.8.4",
"ts-jest": "^26.1.0",
"ts-node": "^8.10.1",
"tslint": "^6.1.2",
"tslint-config-prettier": "^1.18.0",
"tslint-config-standard": "^9.0.0",
"typedoc": "^0.17.6",
"typescript": "~3.9.5"
},
"gitHead": "76b04907380fc059740bac1e06578459ceb3c1c4"
"gitHead": "0f9b6f7fd13b4c97da9bd6fa5afa811f83873b35"
}

@@ -9,39 +9,39 @@ {

"path": "dist/lib/constants.js",
"sha512": "499d060add270a33ba127d1e9055a752c4f9068873bcf1351b516e292616223911aa4304e5d0ddc264f06d3e4c525bbcd77cb086da2b745ea3db63b4644561ea"
"sha512": "f90631a1855f27c26b2d3e9d2e7077b4e4bb3cbcb5c942f1c62b5410e26e9594e50493b958e29dd9a9993efc26b0313e51e82e0ab848042bbd376ef1242d85ac"
},
{
"path": "dist/taquito-utils.es5.js",
"sha512": "cb020d20f3f992464a157c27ad2fb6f8ba59b7df0bdfba84b624e2113d19c0687552387e1f84e5d0d32d17d8075bcf36b97620c28512be215e223e628ffd642b"
"sha512": "6c0ea64ac2a2ded79e69156fa4924b68d5426e1b6aba8a08fff5f420c1fa78b06ddbd72fae6c31fec5131ed55df10cdfe800181a074c0b44e7248fea7b3c143c"
},
{
"path": "dist/lib/taquito-utils.js",
"sha512": "bc581da69d70fa33c08a005fb020b10486767d0602c09059f06a487cebde62039f8d490d4e49785378189e9e887b727bd7cf213985276fbde265a653476ecf59"
"sha512": "c8e085e3c742894c86515d9f50135a8a587ad56b2614dac802eca4520eb9c3ec7c3f39bd15287ae81226dc26803f81af48de28bf222e46cf81fffa23d1c517b1"
},
{
"path": "dist/taquito-utils.umd.js",
"sha512": "c76e5f35ae7bc672f0260a9dc605179f753635f226750273f4601d7daab8feb304b95180d859eca33c02f1769795ce47c077b1160433f249f111a1f00d32686a"
"sha512": "9bd64c809d64e5557089ff214538e9acb7a38378929ebd047a94fd21f6ddaf23245e2a697570ea7c39b6ea46e298d93374d3d4a760024e6f83837b04e294d8f7"
},
{
"path": "dist/lib/validators.js",
"sha512": "989ee14521ea688541ae9d93d9840408ebd59392b3406b1336968465235c61ff1d118563e1bbdc42b4a4288c59f1be1d2a66db972f017d1560130936eb6fcda5"
"sha512": "cedd501f7177314be13fe7fb9168c74ff04411e6752e30179630bf625f41721c2611b14f8972235ffcdaf69332e127989fc38258ebdfafc1bab27a4d770c1b13"
},
{
"path": "dist/lib/constants.js.map",
"sha512": "6d95f07f88784d2cda42f8522d373075ed9df212ee20627d6a8a646d11eb838e75b6e329906ae7374946a95b3173b8b24f3bed2f316cf94512a22559ba902fb5"
"sha512": "60386bfe60bb0dd477fda291b40cbaf2528fabc0b7d94e87f724715c9e22f202537c675069658e610a928cb450843f40fc4dc18660388d22a1dd34c9c4bc4aab"
},
{
"path": "dist/taquito-utils.es5.js.map",
"sha512": "c0c3fa05c0fc949812193c60fa52ffb69092827bcea556dd89f32ecb75be35950ba02f42055d6784fce0f817c885fa4e2bdbee75e1d614670c540e1988c8d4b0"
"sha512": "9e5f17dd069e779a81df5cf150543cb42674c6b83e8c438da68095ba45ed7a2d18f73651a7dd1c8c60a6fd97931eaca4ab93e3df76bc16599088be8742c0d21e"
},
{
"path": "dist/lib/taquito-utils.js.map",
"sha512": "86492bbb165590ec8978cd90d3f6af5a0d3a89666efb739708996825798b7755226fb635c33b662998996550c9fae7cbfcfeb4f3bba14c75d2d9959dd55eb861"
"sha512": "61c3287489ef60a7462af2dcd8d9ab2dde3f93a2b8e437f3d6d316ce1ae8ee70fb8c6d1bf8afca555782052e8e23b687c5708705c7c0b982c1d19f74aa047e85"
},
{
"path": "dist/taquito-utils.umd.js.map",
"sha512": "8c441f1afcfa6392c94b4df81b79b1783fd9d44a10852868fb6c4cfe94e69e91e93a365276f4a6cbed5f0d47ca3cb0b36acb640a4212023506d3d8e3617d20d3"
"sha512": "ccdb92a1f9ed46b5add18b87558dcdf9f36a47c17b3b8d5895716a538583eaf9d578e712fd5a39e52d16e6775ddff4f46a381ca07cb3f6d96401d34a90179a7f"
},
{
"path": "dist/lib/validators.js.map",
"sha512": "dafc8b7fb3abd7f1126e375ef21c6b2f620b65f3fac59ebca26d7cc03e09beed28a490dbccf167ceec85d1780cbdc8424b00b26a16634da1890aca3b4c567688"
"sha512": "4c62d6856a8378a83601979765e4168d2abdf5676cfdeae7a3af9b98d8f3761895e9d28c0d2096aad7b02fb886a996208bc9af33dc2008742c56003ae45752dc"
},

@@ -54,7 +54,7 @@ {

"path": "dist/types/constants.d.ts",
"sha512": "ed65e87921b074ae1e50eb3923336febdb233620ca85b28bce0e17295f633ed80bfb8ef451c846de93232f2841f4288faa14bc10ba29e238b5466ee2ad597d53"
"sha512": "649a276e336facb6ee335fdbb9cfbbead96b09a707ae3cab5d068c6263351d632aadfd76200cd1626570066b3f2980e127c619b4c999ecaa7d8fdcbf65751ab7"
},
{
"path": "dist/types/taquito-utils.d.ts",
"sha512": "4153f24b8a7dbea4ea2731a99e65246d425548b4b8c1cccc295b78acd638056c123e19f32214b709d2af000a92cb082b92ff43b0f020389101cb17dd0e5218f3"
"sha512": "89a14a5a85ca07b5273902d84f0b6ec7f0e1e7c259a2f41dd618c93a3e3675f591caa966d6e7f8793c55b6d87557c540176f4ce296717d6d0081d0f7204e8bd4"
},

@@ -99,3 +99,3 @@ {

],
"sha512": "3cfaed3d4b5f5eb7f4c3abf8b32f1acf1d5bf9a6a2d90da7269573be6dcb96a4ad9f5041134a48083fdd5f4526bab36fafce4a197d14a1d43310b0f64bcddc7a"
"sha512": "8c707b8b79a9ad20fd1ce33eb5ec7a79bc44b022dd3c951a0eed05c954dc9753f3a3f02f8f553a36f05aea5a4d2a5040f3fcc35d8a4f6d75af194d0b140e492e"
}

@@ -108,3 +108,3 @@ },

"name": "@taquito/utils",
"version": "6.2.0-beta.1",
"version": "6.3.0-beta.5",
"description": "converts michelson data and types into convenient JS/TS objects",

@@ -172,30 +172,30 @@ "keywords": [

"bs58check": "^2.1.2",
"buffer": "^5.2.1"
"buffer": "^5.6.0"
},
"devDependencies": {
"@types/jest": "^23.3.2",
"@types/node": "^10.14.13",
"colors": "^1.3.2",
"coveralls": "^3.0.2",
"cross-env": "^5.2.0",
"jest": "^24.8.0",
"jest-config": "^24.8.0",
"lint-staged": "^8.0.0",
"@types/jest": "^26.0.0",
"@types/node": "^14.0.1",
"colors": "^1.4.0",
"coveralls": "^3.1.0",
"cross-env": "^7.0.2",
"jest": "^26.0.1",
"jest-config": "^26.0.1",
"lint-staged": "^10.2.2",
"lodash.camelcase": "^4.3.0",
"prettier": "^1.14.3",
"prettier": "^2.0.5",
"prompt": "^1.0.0",
"replace-in-file": "^3.4.2",
"rimraf": "^2.6.2",
"rollup": "^1.20.1",
"replace-in-file": "^6.0.0",
"rimraf": "^3.0.2",
"rollup": "^2.10.2",
"rollup-plugin-json": "^4.0.0",
"rollup-plugin-sourcemaps": "^0.4.2",
"rollup-plugin-typescript2": "^0.22.1",
"shelljs": "^0.8.3",
"ts-jest": "^23.10.2",
"ts-node": "^7.0.1",
"tslint": "^5.11.0",
"tslint-config-prettier": "^1.15.0",
"tslint-config-standard": "^8.0.1",
"typedoc": "^0.15.0",
"typescript": "~3.6.0"
"rollup-plugin-sourcemaps": "^0.6.2",
"rollup-plugin-typescript2": "^0.27.1",
"shelljs": "^0.8.4",
"ts-jest": "^26.1.0",
"ts-node": "^8.10.1",
"tslint": "^6.1.2",
"tslint-config-prettier": "^1.18.0",
"tslint-config-standard": "^9.0.0",
"typedoc": "^0.17.6",
"typescript": "~3.9.5"
}

@@ -206,3 +206,3 @@ }

],
"signature": "-----BEGIN PGP SIGNATURE-----\n\nwsFcBAABCAAQBQJetdOeCRAD9Qy5GYHsngAAVdMQAJMgVbAWCQ5qZT3Hzw+oz/ZS\n9PAg7xhDV6h6C5PFyBJyZiP8ml0UL0LpgoWbF2EiaoeqB6PDyTy4kwiYOqSfaYeK\ne5TC+jzSPjOa9s+vlWxBJRXt8JzpblSl4fxA1MHXzh0L5FIoDDdLAhhSj+WhHOGv\no1iZyH/5R+9lWaCyH1GUDh3LRN762/m865LMIQ5V7HBw/i8tZdzPXuzJOcQugDeL\n2aVQLcI2lZncD2U6tmx51M/dDXs55+YOBk6oA+iLlcYIaV2lYYjXEn2GvV680Q2h\nnmNDXYvCxNtYazaPqPw2rmebo5b/NTSBWHK62Cx3aKOR0Ydi05Yjg+lRrDoU7/fs\novpVf0xZXeFSy3+6yXI0PCRqw5ae6UN3BQfKBWB7U+DhT7mZRhWpwzE8/zUzTqga\nfNIsSLkjptQxXlBKeUbO4QiBjkrkJ5NkU740UHILaaCPX0qZnLClH6alPEDk/lkS\nsCfHEjzCJ21UsTzl6TFKXaa30RSIn8eEllCcpFy9lZUdd5bquzql7I9B8vErm+Yj\nlQ6N1SEycwPhxqEU5yFY42mDegEnPMUuE3TmLFE1RR5GrRPXsWCt1Sr3n/DlBb5A\nbGAJqlBXdT7UgCe3OY6xRKQ5xFZhnGk2Oq/p6uHU6CBysF3MneY8nMEP6FaPGXmq\nqE6lGZqoVlI0HM9/En98\n=LG2w\n-----END PGP SIGNATURE-----\n"
"signature": "-----BEGIN PGP SIGNATURE-----\n\nwsFcBAABCAAQBQJe5tcqCRAD9Qy5GYHsngAAb9kQAJVkrkjLueT7K67Wht22PsaZ\nMaE37MbZYnNoZV3TKlbQTFBZrPX04UF0/xv1hsPNaipZDqP36Gr8wJKwddP+jDZD\ngrcOo9t3TReghf10iOj6/8rDke/dyq1HDrwYUwTqh+0FIMLn89C44JSTaia0okNA\nonE0ReSPeeWThiVTgEjzL1Z9fNt86O11UZdlVVy6aAMip2SVSq/EjXJTksGIWGqg\ny16eWddfUmW9dWl5xSrU66avzx4M69La1o7w+gezuV1Xdcin1p5tt8oycktXhjrw\n54xcD/hd3ULeAP6Bz6YsG9GVEmj6h/aOAnCiy2obk6E3FoseTxglA7TVc3XUL0WP\nxGTi7nIZB/1APf3E7YbdyHGa7G8qx5okUJ2yszVWQDa0kkMORjX/RFLZ1txiCXTo\n2A5AtqHGIeDBKHtkOLWum8xMbNFjbaefmP/+igWH3TJRVcnVEjl979sKmF3ZJ5yB\nBq4JmFW/eL0NTV+St6p5KBRbr783CNhAQ53syQfv6UzN4dfrdOmjgRixRvoABTqU\n1LlbFpyVpp+CQTzsbSBkux0SajlFFkUBoT95ng+llbko08rPCi4cR4CEQSLnydlP\ncMpCRJ05SIqgneKCdD/ca6zBQt9gfQ3srIG1r7Nh7ByLT8mX4NV6cWWihxMvm2wS\nVvypZahoX+T/2apz8VPo\n=DzQ1\n-----END PGP SIGNATURE-----\n"
}

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

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