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

@polkadot/util

Package Overview
Dependencies
Maintainers
2
Versions
1410
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@polkadot/util - npm Package Compare versions

Comparing version 10.1.12 to 10.1.13

2

assert.d.ts

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

declare type MessageFn = () => string;
type MessageFn = () => string;
/**

@@ -3,0 +3,0 @@ * @name assert

@@ -16,4 +16,4 @@ "use strict";

type: 'cjs',
version: '10.1.12'
version: '10.1.13'
};
exports.packageInfo = packageInfo;

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

export declare type BitLength = 8 | 16 | 32 | 64 | 128 | 256;
export type BitLength = 8 | 16 | 32 | 64 | 128 | 256;

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

declare type AnyFloat = number | Number;
type AnyFloat = number | Number;
interface Options {

@@ -3,0 +3,0 @@ bitLength?: 32 | 64;

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

declare type FnType = Function;
type FnType = Function;
/**

@@ -3,0 +3,0 @@ * @name isFunction

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

declare type AnyFn = (...args: unknown[]) => unknown;
type AnyFn = (...args: unknown[]) => unknown;
/**

@@ -3,0 +3,0 @@ * @name lazyMethod

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

declare type Entries<T> = {
type Entries<T> = {
[K in keyof T]: [K, T[K]];

@@ -3,0 +3,0 @@ }[keyof T][];

@@ -23,3 +23,3 @@ {

"type": "module",
"version": "10.1.12",
"version": "10.1.13",
"main": "./cjs/index.js",

@@ -723,6 +723,6 @@ "module": "./index.js",

"@babel/runtime": "^7.20.1",
"@polkadot/x-bigint": "10.1.12",
"@polkadot/x-global": "10.1.12",
"@polkadot/x-textdecoder": "10.1.12",
"@polkadot/x-textencoder": "10.1.12",
"@polkadot/x-bigint": "10.1.13",
"@polkadot/x-global": "10.1.13",
"@polkadot/x-textdecoder": "10.1.13",
"@polkadot/x-textencoder": "10.1.13",
"@types/bn.js": "^5.1.1",

@@ -729,0 +729,0 @@ "bn.js": "^5.2.1"

@@ -10,3 +10,3 @@ // Copyright 2017-2022 @polkadot/util authors & contributors

type: 'esm',
version: '10.1.12'
version: '10.1.13'
};

@@ -18,4 +18,4 @@ /// <reference types="bn.js" />

}
declare type Logger$Data$Fn = () => unknown[];
export declare type Logger$Data = (unknown | Logger$Data$Fn)[];
type Logger$Data$Fn = () => unknown[];
export type Logger$Data = (unknown | Logger$Data$Fn)[];
export interface Logger {

@@ -44,3 +44,3 @@ debug: (...values: Logger$Data) => void;

}
export declare type BnList = {
export type BnList = {
0: BN;

@@ -56,9 +56,9 @@ 1: BN;

}
export declare type Memoized<F> = F & {
export type Memoized<F> = F & {
unmemoize: (...args: unknown[]) => void;
};
export declare type AnyString = string | String;
export declare type HexDigit = '0' | '1' | '2' | '3' | '4' | '5' | '6' | '7' | '8' | '9' | 'a' | 'b' | 'c' | 'd' | 'e' | 'f';
export declare type HexString = `0x${string}`;
export declare type U8aLike = HexString | number[] | Buffer | Uint8Array | AnyString;
export type AnyString = string | String;
export type HexDigit = '0' | '1' | '2' | '3' | '4' | '5' | '6' | '7' | '8' | '9' | 'a' | 'b' | 'c' | 'd' | 'e' | 'f';
export type HexString = `0x${string}`;
export type U8aLike = HexString | number[] | Buffer | Uint8Array | AnyString;
export interface IBigIntConstructor {

@@ -65,0 +65,0 @@ new (value: string | number | bigint | boolean): bigint;

@@ -7,3 +7,3 @@ interface PackageJson {

}
declare type FnString = () => string | undefined;
type FnString = () => string | undefined;
/**

@@ -10,0 +10,0 @@ * @name detectPackage

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