@abasb75/dicom-parser 0.0.0-test → 0.0.0-test0

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 CHANGED
@@ -1,11 +1,15 @@
1
1
  # @abasb75/dicom-parser
2
2
 
3
3
  ```sh
4
- npm i @abasb75/dicom-parser --save
4
+ npm i @abasb75/dicom-parser pako --save
5
+ npm i @types/pako --save-dev
5
6
  ```
6
7
 
8
+ # Demo
7
9
 
8
- #Usage
10
+ <a href="https://abasb75.github.io/dicom-parser/">demo link</a>
11
+
12
+ # Usage
9
13
 
10
14
  1. For Download dicom and parse from url:
11
15
 
@@ -49,7 +53,7 @@ import { parse } from "@abasb75/dicom-parser";
49
53
 
50
54
  ...
51
55
 
52
- const dataset = parse(arrayBuffer);
56
+ const dataset = parse(arrayBuffer); // ArrayBuffer
53
57
 
54
58
  ```
55
59