(command)
| 40 | const blockedAttemptStore = new Map(); |
| 41 | |
| 42 | function normalizeCommandCategory(command) { |
| 43 | return String(command?.category || '').trim().toLowerCase(); |
| 44 | } |
| 45 | |
| 46 | function normalizeCommandName(commandName) { |
| 47 | return String(commandName || '').trim().toLowerCase(); |