Skip to content

Commit

Permalink
refactor: output unformatted JSON in CLI
Browse files Browse the repository at this point in the history
  • Loading branch information
jasonklotzer committed Feb 7, 2025
1 parent 6f9e7d1 commit c351f88
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion index.js
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ program
const { dicomParserOptions, jsonOutputOptions } = config.get();
const reader = new DicomFile(fileUrl, dicomParserOptions);
const json = reader.toJson(jsonOutputOptions);
console.log(JSON.stringify(json, "", 2));
console.log(JSON.stringify(json));
});

program
Expand Down

0 comments on commit c351f88

Please # to comment.