Files

12 lines
366 B
JavaScript
Raw Permalink Normal View History

2023-02-26 15:16:21 -05:00
import chalk from "chalk"
const commandList = ['anime <name="string", option="string">']
export default function help(subcommand = []) {
if (subcommand.length != 0) {
console.log(chalk.green(commandList[commandList.indexOf(subcommand)]))
} else {
for (const i of commandList) {
console.log(chalk.cyanBright(i));
}
}
}