Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  1. function jsonHashing()
  2. {
  3.     var obj = {};
  4.  
  5.     this.save = function(key, value) {
  6.     obj[JSON.stringify(key)] = value;
  7.     };
  8.  
  9.     this.get = function(key) {
  10.     return obj[JSON.stringify(key)];
  11.     };
  12. }