(obj: IdObj<Value>)
| 46 | }; |
| 47 | |
| 48 | export const objToMap = <Value>(obj: IdObj<Value>): Map<Id, Value> => |
| 49 | new Map(objEntries(obj)); |
| 50 | |
| 51 | export const objForEach = <Value>( |
| 52 | obj: IdObj<Value>, |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…