Skip to content

Commit

Permalink
Update JSONStringify.flyde.ts (#163)
Browse files Browse the repository at this point in the history
  • Loading branch information
akim-muto authored Oct 5, 2024
1 parent e7952ae commit ec13b9c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion stdlib/src/Objects/JSONStringify.flyde.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,5 +11,5 @@ export const JSONStringify: CodeNode = {
description: "Stringifies an object into a JSON string",
inputs: { object: { description: "Object to stringify" } },
outputs: { json: { description: "The stringified JSON" } },
run: ({ object }, { json }) => json.next(JSON.stringify(object)),
run: ({ object }, { json }) => json.next(JSON.stringify(object, null, "\t")),
};

0 comments on commit ec13b9c

Please sign in to comment.