Skip to content

Commit 373af69

Browse files
Update src/native/json/jsonValues.ts
Co-authored-by: Nicky <111157596+xNickyDev@users.noreply.github.com>
1 parent 8c9365d commit 373af69

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/native/json/jsonValues.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,6 @@ export default new NativeFunction({
3434
execute(ctx, [name, sep]) {
3535
const json = ctx.getEnvironmentKey(name)
3636
if (!json) return this.success()
37-
return this.successJSON(Object.values(json).map((v) => (typeof v === "string" ? v : JSON.stringify(v))).join(sep ?? ', '))
37+
return this.successJSON(Object.values(json).map((v) => (typeof v === "string" ? v : JSON.stringify(v))).join(sep ?? ", "))
3838
},
3939
})

0 commit comments

Comments
 (0)