kiwiirc / irc-framework

🛠️ A better IRC framework for node.js. For bots and full clients.
MIT License
182 stars 65 forks source link

messages have weird characters with leading spaces #270

Closed ralyodio closed 3 years ago

ralyodio commented 3 years ago
bot.matchMessage(/^\.help/, async (event) => {
  console.log(event);
  event.reply(`
    Available commands:

      .c <crypto>
      .s <stock>
      .join <channel>
  `);
});

produces weird leading characters on each line.

prawnsalad commented 3 years ago

Javascripts backtick includes all spaces before/after your line text.