We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7838c54 commit 77b089fCopy full SHA for 77b089f
js/formDataToJson.js
@@ -97,7 +97,7 @@ async function downloadFile(event) {
97
98
const codeJson = document.getElementById("json-result").value
99
const jsonObject = JSON.parse(codeJson);
100
- const jsonString = JSON.stringify(jsonObject, null, 2);
+ const jsonString = JSON.stringify(jsonObject, null, 2) + "\n";
101
const blob = new Blob([jsonString], { type: "application/json" });
102
103
// Create anchor element and create download link
0 commit comments