(current: K)
| 140 | |
| 141 | /** @internal */ |
| 142 | export const makeMapKey = <K>(current: K): MapKey<K> => new MapKeyImpl(current) |
| 143 | |
| 144 | /** @internal */ |
| 145 | export const isMapKey = (u: unknown): u is MapKey<unknown> => hasProperty(u, MapKeyTypeId) |
no outgoing calls
no test coverage detected
searching dependent graphs…