view js/modules/cache.js @ 64:a196cc29fffb

ESC in dialog now makes it go away
author Atul Varma <avarma@mozilla.com>
date Sun, 25 Apr 2010 08:45:26 -0700
parents 0b71df72ebe1
children 55c1b3647357
line wrap: on
line source

Require.modules["cache"] = function(exports) {
  var cache = {};

  exports.set = function set(key, value) {
    cache[key] = value;
  };
  exports.get = function get(key) {
    return cache[key];
  };
};