()
| 179 | * @since 2.0.0 |
| 180 | */ |
| 181 | export const empty = <K extends string | symbol = never, V = never>(): Record< |
| 182 | ReadonlyRecord.NonLiteralKey<K>, |
| 183 | V |
| 184 | > => ({} as any) |
| 185 | |
| 186 | /** |
| 187 | * Determines if a mutable record is empty. |
no outgoing calls
no test coverage detected