We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 28531c8 commit 880ce9dCopy full SHA for 880ce9d
src/Transpiler.ts
@@ -741,7 +741,7 @@ export class LuaTranspiler {
741
case "splice":
742
return `TS_splice(${caller}, ${params})`;
743
case "join":
744
- if (!params) {
+ if (node.arguments.length === 0) {
745
// if seperator is omitted default seperator is ","
746
return `table.concat(${caller}, ",")`;
747
} else {
0 commit comments