( map: Map<Key, Value> | undefined, key: Key, )
| 22 | ]; |
| 23 | |
| 24 | export const mapGet = <Key, Value>( |
| 25 | map: Map<Key, Value> | undefined, |
| 26 | key: Key, |
| 27 | ): Value | undefined => map?.get(key); |
| 28 | |
| 29 | export const mapForEach = <Key, Value>( |
| 30 | map: Map<Key, Value> | undefined, |
no test coverage detected
searching dependent graphs…