Skip to content

Instantly share code, notes, and snippets.

@BrightnBubbly
Created May 4, 2020 05:02
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save BrightnBubbly/f684ab53c1628028cc957889193659bd to your computer and use it in GitHub Desktop.
Save BrightnBubbly/f684ab53c1628028cc957889193659bd to your computer and use it in GitHub Desktop.
async sendMessage() {
if (this.message) {
try {
await this.channel.sendMessage({
text: this.message,
});
this.message = '';
} catch (err) {
console.log(err);
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment