/** * Returns `true` if the map contains the specified key, otherwise returns * `false`. * * @tsplus static ImmutableMap.Aspects has * @tsplus pipeable ImmutableMap has */ export function has(key: K) { return (self: ImmutableMap): boolean => self.internalMap.has(key) }