( map: Map<Key, Value> | undefined, cb: (key: Key, value: Value) => void, )
| 27 | ): Value | undefined => map?.get(key); |
| 28 | |
| 29 | export const mapForEach = <Key, Value>( |
| 30 | map: Map<Key, Value> | undefined, |
| 31 | cb: (key: Key, value: Value) => void, |
| 32 | ): void => collForEach(map, (value, key) => cb(key, value)); |
| 33 | |
| 34 | export const mapMap = <Key, Value, Return>( |
| 35 | coll: Map<Key, Value> | undefined, |
no test coverage detected
searching dependent graphs…