error

 avatar
unknown
javascript
2 years ago
307 B
5
Indexable
bot.command("value", (ctx) => {
  let input = ctx.message.text.split(" ");
  
  if (input[0].length != 1) {
    ctx.reply("PUT BIN");
    return;
  } else if (input[0].length > 6) {
    ctx.reply("> 6");
    return;
  } else if (input[0].length < 6) {
    ctx.reply("< 6");
    return;
  }

})
Editor is loading...