Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  1. function libHashing()
  2. {
  3.     var ht = new Hashtable();
  4.    
  5.     this.save = function(key, value) {
  6.     ht.put(key, value);
  7.     };
  8.  
  9.     this.get = function(key) {
  10.     return ht.get(key);
  11.     };
  12. }