()
| 50 | }; |
| 51 | |
| 52 | var HashTable = function() { |
| 53 | this.array = []; |
| 54 | this.limit = 8; |
| 55 | }; |
| 56 | |
| 57 | HashTable.prototype.insert = function(key, value) { |
| 58 | var hash = getHash(key, this.limit); |
nothing calls this directly
no outgoing calls
no test coverage detected