@dshahi468/nd-dataset-split 1.0.0 → 1.0.1
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 +2 -2
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -18,7 +18,7 @@
|
|
|
18
18
|
### npm レジストリから
|
|
19
19
|
|
|
20
20
|
```bash
|
|
21
|
-
npm
|
|
21
|
+
npm i @dshahi468/nd-dataset-split
|
|
22
22
|
```
|
|
23
23
|
|
|
24
24
|
## 使い方
|
|
@@ -26,7 +26,7 @@ npm install nd-dataset-split
|
|
|
26
26
|
### 1. シンプルに使う(`processInChunks`)
|
|
27
27
|
|
|
28
28
|
```ts
|
|
29
|
-
import { processInChunks } from "nd-dataset-split";
|
|
29
|
+
import { processInChunks } from "@dshahi468/nd-dataset-split";
|
|
30
30
|
|
|
31
31
|
const data = Array.from({ length: 45 }, (_, i) => i + 1);
|
|
32
32
|
|