Lines Matching refs:key
27 * @param key {String} The name of the property.
30 add : function(name, key, val) {
33 d[name][key] = val;
44 var key;
46 for (key in o) {
47 if (o.hasOwnProperty(key)) {
48 this.add(name, key, o[key]);
58 * @param key {String} The property to remove.
60 remove: function(name, key) {
63 delete d[name][key];
97 * @param key {String} Optional. The property value to retrieve.
100 get: function(name, key) {
102 return (d[name]) ? d[name][key] : undefined;