| 152 | } |
| 153 | |
| 154 | export class InvalidKeyError extends CollectionOperationError { |
| 155 | constructor(key: unknown, item: unknown) { |
| 156 | const keyType = key === null ? `null` : typeof key |
| 157 | super( |
nothing calls this directly
no outgoing calls
no test coverage detected