(commandName)
| 105 | } |
| 106 | |
| 107 | export function isProtectedCommand(commandName) { |
| 108 | return PROTECTED_COMMANDS.has(String(commandName || '').toLowerCase()); |
| 109 | } |
| 110 | |
| 111 | export function isCommandEnabledInConfig(config, commandName, category) { |
| 112 | const normalizedName = String(commandName || '').toLowerCase(); |
no outgoing calls
no test coverage detected