Package Exports
- hash-table-ds
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (hash-table-ds) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
hash-table
Hash Table implementation in JavaScript
Installation & Usage :
npm install hash-table-ds
const HashTable = require("hash-table-ds");
let ht = new HashTable();
ht.set('name', 'kumar'); // Set key value pair in hash table
bst.get(name); // Get value from the hash table
bst.keys(); // Returns keys array
bst.values() // Returns unique values array