(cb: (id: Id, value: Thing) => void)
| 71 | const getThingIds = (): Ids => mapKeys(tableIds); |
| 72 | |
| 73 | const forEachThing = (cb: (id: Id, value: Thing) => void): void => |
| 74 | mapForEach(things, cb); |
| 75 | |
| 76 | const hasThing = (id: Id): boolean => collHas(things, id); |
| 77 |
nothing calls this directly
no test coverage detected
searching dependent graphs…