Comparing version 0.39.3 to 0.39.4
@@ -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 @@ |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
378057