(self: ReadonlyRecord<K, A>)
| 972 | * @since 2.0.0 |
| 973 | */ |
| 974 | export const keys = <K extends string | symbol, A>(self: ReadonlyRecord<K, A>): Array<K & string> => |
| 975 | Object.keys(self) as Array<K & string> |
| 976 | |
| 977 | /** |
| 978 | * Retrieves the values of a given record as an array. |
no outgoing calls
no test coverage detected