Sha256: 8a6d2c4f17d3dd25584ab3f30044ca14307689d2abc8f3bbbdf18d87dfc149a9
Contents?: true
Size: 1019 Bytes
Versions: 62
Compression:
Stored size: 1019 Bytes
Contents
/* MIT License http://www.opensource.org/licenses/mit-license.php Author Tobias Koppers @sokra */ function ArrayMap() { this.keys = []; this.values = []; } module.exports = ArrayMap; ArrayMap.prototype.get = function(key) { for(var i = 0; i < this.keys.length; i++) { if(this.keys[i] === key) { return this.values[i]; } } return; }; ArrayMap.prototype.set = function(key, value) { for(var i = 0; i < this.keys.length; i++) { if(this.keys[i] === key) { this.values[i] = value; return this; } } this.keys.push(key); this.values.push(value); return this; }; ArrayMap.prototype.remove = function(key, value) { for(var i = 0; i < this.keys.length; i++) { if(this.keys[i] === key) { this.keys.splice(i, 1); this.values.splice(i, 1); return true; } } return false; }; ArrayMap.prototype.clone = function() { var newMap = new ArrayMap(); for(var i = 0; i < this.keys.length; i++) { newMap.keys.push(this.keys[i]); newMap.values.push(this.values[i]); } return newMap; };
Version data entries
62 entries across 62 versions & 1 rubygems