iterable-hash-table
Advanced tools
Comparing version 2.2.1 to 3.0.1
{ | ||
"name": "iterable-hash-table", | ||
"version": "2.2.1", | ||
"version": "3.0.1", | ||
"description": "A simple Iterable Hash Table written in TypeScript", | ||
@@ -5,0 +5,0 @@ "main": "public/HashTable.js", |
@@ -286,3 +286,3 @@ 'use strict'; | ||
* The resize method resizes the hash table by either increasing or decreasing the buckets | ||
* array depending upon if the number of buckets drops below 20% or increases above 70%. It | ||
* array depending upon if the number of buckets drops below 40% or increases above 70%. It | ||
* then iterates over the old buckets array and rehashes the keys and inserts the key/value | ||
@@ -289,0 +289,0 @@ * pairs into the new resized array. |
45635
51