Socket
Socket
Sign inDemoInstall

mnemonist

Package Overview
Dependencies
Maintainers
1
Versions
69
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

mnemonist - npm Package Compare versions

Comparing version 0.39.5 to 0.39.6

10

fibonacci-heap.d.ts

@@ -45,3 +45,6 @@ /**

// Statics
static from<I>(iterable: Iterable<I> | {[key: string]: I}): FibonacciHeap<I>;
static from<I>(
iterable: Iterable<I> | {[key: string]: I},
comparator?: FibonacciHeapComparator<I>
): FibonacciHeap<I>;
}

@@ -65,3 +68,6 @@

// Statics
static from<I>(iterable: Iterable<I> | {[key: string]: I}): FibonacciHeap<I>;
static from<I>(
iterable: Iterable<I> | {[key: string]: I},
comparator?: FibonacciHeapComparator<I>
): FibonacciHeap<I>;
}

2

package.json
{
"name": "mnemonist",
"version": "0.39.5",
"version": "0.39.6",
"description": "Curated collection of data structures for the JavaScript/TypeScript.",

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

@@ -23,3 +23,6 @@ /**

// Statics
static from<I>(iterable: Iterable<I> | {[key: string]: I}): StaticIntervalTree<I>;
}
static from<I>(
iterable: Iterable<I> | {[key: string]: I},
getters?: StaticIntervalTreeGettersTuple<I>
): StaticIntervalTree<I>;
}

@@ -21,3 +21,3 @@ /**

// Constructor
constructor(ArrayClass: IArrayLikeConstructor, length: number | VectorOptions);
constructor(ArrayClass: IArrayLikeConstructor, initialCapacityOrOptions: number | VectorOptions);

@@ -52,3 +52,3 @@ // Methods

// Constructor
constructor(length: number | VectorOptions);
constructor(initialCapacityOrOptions: number | VectorOptions);

@@ -55,0 +55,0 @@ // Methods

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