(command: unknown)
| 51 | } |
| 52 | |
| 53 | export function normalizeBatchCommandName(command: unknown): string { |
| 54 | return typeof command === 'string' ? command.trim().toLowerCase() : ''; |
| 55 | } |
| 56 | |
| 57 | export function readStructuredBatchCommandName( |
| 58 | command: unknown, |
no outgoing calls
no test coverage detected