7 lines
No EOL
149 B
JavaScript
7 lines
No EOL
149 B
JavaScript
|
|
|
|
module.exports = function(client){
|
|
let list = "";
|
|
client.customCommands.keys().forEach(commandName => list += `${commandName}\n`)
|
|
return list;
|
|
} |