Advertisement
Guest User

Untitled

a guest
May 30th, 2012
1,491
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  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. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement