web-csv-toolbox 0.5.1 → 0.5.3
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 -4
package/README.md
CHANGED
|
@@ -208,7 +208,7 @@ for await (const record of parse(csv, { headers: ['name', 'age'] })) {
|
|
|
208
208
|
|
|
209
209
|
## Supported Runtimes 💻
|
|
210
210
|
|
|
211
|
-
### Works on Node.js
|
|
211
|
+
### Works on Node.js
|
|
212
212
|
|
|
213
213
|
| Versions | Status |
|
|
214
214
|
| -------- | ------ |
|
|
@@ -216,7 +216,7 @@ for await (const record of parse(csv, { headers: ['name', 'age'] })) {
|
|
|
216
216
|
| 18.x | ✅ |
|
|
217
217
|
|
|
218
218
|
|
|
219
|
-
### Works on Browser
|
|
219
|
+
### Works on Browser
|
|
220
220
|
|
|
221
221
|
| OS | Chrome | FireFox | Default |
|
|
222
222
|
| ------- | ------ | ------- | ------------- |
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "web-csv-toolbox",
|
|
3
|
-
"version": "0.5.
|
|
3
|
+
"version": "0.5.3",
|
|
4
4
|
"description": "A CSV Toolbox utilizing Web Standard APIs.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/web-csv-toolbox.cjs",
|
|
@@ -27,9 +27,6 @@
|
|
|
27
27
|
"doc": "typedoc",
|
|
28
28
|
"test": "vitest",
|
|
29
29
|
"test:browser": "vitest --browser",
|
|
30
|
-
"format": "biome format . --write",
|
|
31
|
-
"check": "biome check . --apply",
|
|
32
|
-
"check:no-apply": "biome check .",
|
|
33
30
|
"build": "vite build",
|
|
34
31
|
"serve": "vite serve",
|
|
35
32
|
"prepare": "husky install"
|