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

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.3 to 0.39.4

4

bi-map.d.ts

@@ -16,3 +16,3 @@ /**

has(key: K): boolean;
get(key: K): V;
get(key: K): V | undefined;
forEach(callback: (value: V, key: K, map: this) => void, scope?: any): void;

@@ -37,3 +37,3 @@ keys(): IterableIterator<K>;

has(key: K): boolean;
get(key: K): V;
get(key: K): V | undefined;
forEach(callback: (value: V, key: K, map: this) => void, scope?: any): void;

@@ -40,0 +40,0 @@ keys(): IterableIterator<K>;

{
"name": "mnemonist",
"version": "0.39.3",
"version": "0.39.4",
"description": "Curated collection of data structures for the JavaScript/TypeScript.",

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

@@ -193,3 +193,3 @@ /**

// Padding the array
for (; i < paddingOffset; i++)
for (i = length; i < length + paddingOffset; i++)
array[i] = 0;

@@ -196,0 +196,0 @@

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