(table, hash)
| 44 | } |
| 45 | |
| 46 | function DeleteCache(table, hash) { |
| 47 | cache.forEach((item, index) => { |
| 48 | if (item.table == table && item.hash == hash) { |
| 49 | return cache.splice(index, 1); |
| 50 | } |
| 51 | }); |
| 52 | } |
| 53 | |
| 54 | function GetResources() { |
| 55 | var resources = []; |
nothing calls this directly
no outgoing calls
no test coverage detected