Fish Wang says to OKTW Networkfunction MapSet() { this._data = {}; this.add = function (key, data) { this._data[key] = this._data[key] || []; this._data[key].push(data); } this.get = function (key) { this._data[key] = this._data[key] || []; return this._data[key] } this.clear = function () { this._data = {}; } }at Wed, Jul 26, 2017 3:31 PM