(obj: T)
| 56 | * @category Object |
| 57 | */ |
| 58 | export function objectKeys<T extends object>(obj: T) { |
| 59 | return Object.keys(obj) as Array<`${keyof T & (string | number | boolean | null | undefined)}`> |
| 60 | } |
| 61 | |
| 62 | /** |
| 63 | * Strict typed `Object.entries` |
no outgoing calls
no test coverage detected