(id: Id)
| 76 | const hasThing = (id: Id): boolean => collHas(things, id); |
| 77 | |
| 78 | const getTableId = (id: Id): Id => mapGet(tableIds, id) as Id; |
| 79 | |
| 80 | const getThing = (id: Id): Thing | undefined => mapGet(things, id); |
| 81 |
no test coverage detected
searching dependent graphs…