Skip to content

Commit

Permalink
formatter
Browse files Browse the repository at this point in the history
  • Loading branch information
sedghi committed Jan 17, 2025
1 parent 6ea986b commit 32a41ed
Showing 1 changed file with 2 additions and 6 deletions.
8 changes: 2 additions & 6 deletions src/DicomMessage.js
Original file line number Diff line number Diff line change
Expand Up @@ -378,12 +378,8 @@ class DicomMessage {
values.push(value);
}
} else {
const { rawValue, value } = vr.read(
stream,
length,
syntax,
options
) || {};
const { rawValue, value } =
vr.read(stream, length, syntax, options) || {};
if (!vr.isBinary() && singleVRs.indexOf(vr.type) == -1) {
rawValues = rawValue;
values = value;
Expand Down

0 comments on commit 32a41ed

Please sign in to comment.