discord-bot-cli
Version:
An easy way to build a command-based discord bot with discord.js.
15 lines (14 loc) • 406 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.reply = void 0;
/* eslint-disable @typescript-eslint/no-explicit-any */
async function reply(message, a, b) {
try {
return await message.channel.send(a, b);
}
catch {
return await message.author.send(a, b);
}
}
exports.reply = reply;
/* eslint-enable @typescript-eslint/no-explicit-any */