JSPM

hash-table-ds

1.0.0
  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 2
  • Score
    100M100P100Q17328F
  • License MIT

Hash Table implementation in JavaScript

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