iterable-hash-table
Advanced tools
Comparing version 2.0.1 to 2.0.2
{ | ||
"name": "iterable-hash-table", | ||
"version": "2.0.1", | ||
"version": "2.0.2", | ||
"description": "A simple Iterable Hash Table written in TypeScript", | ||
@@ -5,0 +5,0 @@ "main": "public/HashTable.js", |
@@ -161,3 +161,3 @@ 'use strict'; | ||
/** | ||
* The insert method will call the hash method to encrypt our insertion key and insert its | ||
* The set method will call the hash method to encrypt our insertion key and insert its | ||
* value at this specified index in our storage array (any index from 0 to size) By using | ||
@@ -365,2 +365,2 @@ * a Map as our buckets, we get the benifit of being able to handle hash collisions while | ||
; | ||
module.exports = HashTable; | ||
export default HashTable; |
@@ -272,2 +272,2 @@ 'use strict'; | ||
module.exports = HashTable | ||
export default HashTable |
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
25477