We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b468448 commit 7758d45Copy full SHA for 7758d45
src/lib/dict.js
@@ -14,7 +14,7 @@ Dict.prototype = new function()
14
15
this.set = function(key, value) { this._dict[PREFIX + key] = value; };
16
17
- this.delete = function(key) { delete this._dict[PREFIX + key]; };
+ this["delete"] = function(key) { delete this._dict[PREFIX + key]; };
18
19
this.get_chain = function(prop_list)
20
{
0 commit comments