Mercurial > bugzilla-dashboard
view js/modules/cache.js @ 63:88b856b1353b
added file-bug dialog
author | Atul Varma <avarma@mozilla.com> |
---|---|
date | Sun, 25 Apr 2010 08:30:50 -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]; }; };