Closed bbrk24 closed 1 week ago
[1, 2, 3] .map (x) => x + ".0" .join ", "
Intuitive compilation:
[1, 2, 3] .map( (x) => x + ".0" ).join(", ")
Current compilation:
[1, 2, 3] .map( (x) => x + ".0", ($) => $.join(", ") )
Another bad example:
await bot .once 'ready' (bot) => // TODO .login config.bot.token
Intuitive compilation:
Current compilation:
Another bad example: