discord_bot/util/custom_commands/getAllCustomCommands.js
SileNce5k 7702f10587
All checks were successful
CI / CI (push) Successful in 25s
Lint Codebase / eslint (push) Successful in 16s
Use set for listing all custom commands
2024-12-19 18:57:48 +01:00

7 lines
No EOL
149 B
JavaScript

module.exports = function(client){
let list = "";
client.customCommands.keys().forEach(commandName => list += `${commandName}\n`)
return list;
}