(maybeMap: unknown)
| 8 | * Also true for OrderedMaps. |
| 9 | */ |
| 10 | export function isMap(maybeMap: unknown): maybeMap is Map<unknown, unknown> { |
| 11 | return Boolean( |
| 12 | maybeMap && |
| 13 | // @ts-expect-error: maybeMap is typed as `{}`, need to change in 6.0 to `maybeMap && typeof maybeMap === 'object' && IS_MAP_SYMBOL in maybeMap` |
| 14 | maybeMap[IS_MAP_SYMBOL] |
| 15 | ); |
| 16 | } |
no outgoing calls
no test coverage detected