Skip to content

Commit 6ea986b

Browse files
committed
fix(dicomMessage): to handle undefined return value
1 parent e8f375c commit 6ea986b

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

package.json

+1
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@
1212
"build": "rollup -c",
1313
"build:examples": "npm run build && npx cpx 'build/**/*.{js,map}' examples/js",
1414
"start": "rollup -c -w",
15+
"dev": "rollup -c -w",
1516
"format": "prettier --write 'src/**/*.js' 'test/**/*.js'",
1617
"format:check": "prettier --check 'src/**/*.js' 'test/**/*.js'",
1718
"lint": "eslint --fix 'src/**/*.js' 'test/**/*.js'"

src/DicomMessage.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -383,7 +383,7 @@ class DicomMessage {
383383
length,
384384
syntax,
385385
options
386-
);
386+
) || {};
387387
if (!vr.isBinary() && singleVRs.indexOf(vr.type) == -1) {
388388
rawValues = rawValue;
389389
values = value;

0 commit comments

Comments
 (0)