(obj: Record<string, unknown> | undefined | null)
| 3029 | } |
| 3030 | |
| 3031 | function safeKeys(obj: Record<string, unknown> | undefined | null): string[] { |
| 3032 | return obj ? Object.keys(obj) : [] |
| 3033 | } |
| 3034 | |
| 3035 | // ============================================================================ |
| 3036 | // Command Definition |
no test coverage detected