dcmjs 0.19.5 → 0.19.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +1 -1
- package/build/dcmjs.es.js +3 -1
- package/build/dcmjs.es.js.map +1 -1
- package/build/dcmjs.js +3 -1
- package/build/dcmjs.js.map +1 -1
- package/package.json +1 -1
- package/test/arrayItem.json +351 -0
- package/test/test_data.js +10 -0
package/README.md
CHANGED
|
@@ -36,7 +36,7 @@ _Parts of DICOM that dcmjs will focus on:_
|
|
|
36
36
|
|
|
37
37
|
_Parts of DICOM that dcmjs *will not* focus on:_
|
|
38
38
|
|
|
39
|
-
- DIMSE (legacy networking like C-FIND, C-MOVE, etc). See the [
|
|
39
|
+
- DIMSE (legacy networking like C-STORE, C-FIND, C-MOVE, etc). See the [dcmjs-dimse project](https://github.com/PantelisGeorgiadis/dcmjs-dimse) for that.
|
|
40
40
|
- Physical Media (optical disks). See [this FAQ](https://www.dclunie.com/medical-image-faq/html/index.html) if you need to work with those.
|
|
41
41
|
|
|
42
42
|
# Usage
|
package/build/dcmjs.es.js
CHANGED
|
@@ -2753,7 +2753,8 @@ var addAccessors = function addAccessors(dest, src) {
|
|
|
2753
2753
|
},
|
|
2754
2754
|
set: function set(v) {
|
|
2755
2755
|
src[key] = v;
|
|
2756
|
-
}
|
|
2756
|
+
},
|
|
2757
|
+
configurable: true
|
|
2757
2758
|
});
|
|
2758
2759
|
});
|
|
2759
2760
|
};
|
|
@@ -2917,6 +2918,7 @@ function () {
|
|
|
2917
2918
|
var sqZero = naturalDataset[naturalName][0];
|
|
2918
2919
|
|
|
2919
2920
|
if (sqZero && _typeof(sqZero) === "object" && !sqZero.length) {
|
|
2921
|
+
naturalDataset[naturalName] = _toConsumableArray(naturalDataset[naturalName]);
|
|
2920
2922
|
addAccessors(naturalDataset[naturalName], sqZero);
|
|
2921
2923
|
} else {
|
|
2922
2924
|
naturalDataset[naturalName] = sqZero;
|