(table, array)
| 11080 | } |
| 11081 | |
| 11082 | function appendToLookupTable(table, array) { |
| 11083 | for(var i=0,l=array.length;i<l;++i) { |
| 11084 | table[array[i]] = null; |
| 11085 | } |
| 11086 | return table; |
| 11087 | } |
| 11088 | |
| 11089 | function isLookupTableEmpty(table) { |
| 11090 | for(var i in table) { |
no outgoing calls
no test coverage detected