Compare commits
No commits in common. "e8a21fa5a343b7ee9732666e69793beb220c5143" and "3b7271d3a8a992e3c613456ae445b6bca8e9b661" have entirely different histories.
e8a21fa5a3
...
3b7271d3a8
|
@ -113,14 +113,10 @@ export const parseDicom = (file, name = false) => {
|
|||
}
|
||||
})
|
||||
uintKey.forEach(key => {
|
||||
if (res.hasOwnProperty(key)) {
|
||||
res[key] = data.uint16(dicom[key])
|
||||
}
|
||||
res[key] = data.uint16(dicom[key])
|
||||
})
|
||||
intStringKey.forEach(key => {
|
||||
if (res.hasOwnProperty(key)) {
|
||||
res[key] = data.intString(dicom[key])
|
||||
}
|
||||
res[key] = data.intString(dicom[key])
|
||||
})
|
||||
defaultKey.forEach(key => {
|
||||
if (!res[key] && res.hasOwnProperty(key)) {
|
||||
|
|
File diff suppressed because it is too large
Load Diff
Loading…
Reference in New Issue