( map: IdMap3<MapValue>, valueMapper?: (mapValue: MapValue, id: Id) => ObjValue, excludeMapValue?: (mapValue: MapValue) => boolean, )
| 115 | ); |
| 116 | |
| 117 | export const mapToObj3 = <MapValue, ObjValue = MapValue>( |
| 118 | map: IdMap3<MapValue>, |
| 119 | valueMapper?: (mapValue: MapValue, id: Id) => ObjValue, |
| 120 | excludeMapValue?: (mapValue: MapValue) => boolean, |
| 121 | ) => |
| 122 | mapToObj( |
| 123 | map, |
| 124 | (childMap) => |
| 125 | mapToObj2<MapValue, ObjValue>(childMap, valueMapper, excludeMapValue), |
| 126 | collIsEmpty, |
| 127 | objIsEmpty, |
| 128 | ); |
| 129 | |
| 130 | export const mapClone = <MapValue>( |
| 131 | map: IdMap<MapValue> | undefined, |
no test coverage detected
searching dependent graphs…