spliterator 6.1.0 → 6.2.0
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 +18 -0
- package/out/index.d.ts +26 -25
- package/out/index.d.ts.map +1 -1
- package/out/index.js +26 -25
- package/out/index.js.map +1 -1
- package/out/lib/AsyncSpliterator.d.ts.map +1 -1
- package/out/lib/AsyncSpliterator.js +28 -0
- package/out/lib/AsyncSpliterator.js.map +1 -1
- package/out/lib/CharacterSequence.d.ts +16 -1
- package/out/lib/CharacterSequence.d.ts.map +1 -1
- package/out/lib/CharacterSequence.js +37 -0
- package/out/lib/CharacterSequence.js.map +1 -1
- package/out/lib/core/AsyncSpliterator.d.ts +227 -0
- package/out/lib/core/AsyncSpliterator.d.ts.map +1 -0
- package/out/lib/core/AsyncSpliterator.js +510 -0
- package/out/lib/core/AsyncSpliterator.js.map +1 -0
- package/out/lib/core/BufferController.d.ts +77 -0
- package/out/lib/core/BufferController.d.ts.map +1 -0
- package/out/lib/core/BufferController.js +118 -0
- package/out/lib/core/BufferController.js.map +1 -0
- package/out/lib/core/CharacterSequence.d.ts +72 -0
- package/out/lib/core/CharacterSequence.d.ts.map +1 -0
- package/out/lib/core/CharacterSequence.js +347 -0
- package/out/lib/core/CharacterSequence.js.map +1 -0
- package/out/lib/core/CompositeDataView.d.ts +111 -0
- package/out/lib/core/CompositeDataView.d.ts.map +1 -0
- package/out/lib/core/CompositeDataView.js +241 -0
- package/out/lib/core/CompositeDataView.js.map +1 -0
- package/out/lib/core/IndexQueue.d.ts +48 -0
- package/out/lib/core/IndexQueue.d.ts.map +1 -0
- package/out/lib/core/IndexQueue.js +111 -0
- package/out/lib/core/IndexQueue.js.map +1 -0
- package/out/lib/core/SlidingWindow.d.ts +47 -0
- package/out/lib/core/SlidingWindow.d.ts.map +1 -0
- package/out/lib/core/SlidingWindow.js +63 -0
- package/out/lib/core/SlidingWindow.js.map +1 -0
- package/out/lib/core/Spliterator.d.ts +96 -0
- package/out/lib/core/Spliterator.d.ts.map +1 -0
- package/out/lib/core/Spliterator.js +330 -0
- package/out/lib/core/Spliterator.js.map +1 -0
- package/out/lib/core/wasm_base64.d.ts +19 -0
- package/out/lib/core/wasm_base64.d.ts.map +1 -0
- package/out/lib/core/wasm_base64.js +19 -0
- package/out/lib/core/wasm_base64.js.map +1 -0
- package/out/lib/core/wasm_module.d.ts +57 -0
- package/out/lib/core/wasm_module.d.ts.map +1 -0
- package/out/lib/core/wasm_module.js +34 -0
- package/out/lib/core/wasm_module.js.map +1 -0
- package/out/lib/formats/CSVSpliterator.d.ts +131 -0
- package/out/lib/formats/CSVSpliterator.d.ts.map +1 -0
- package/out/lib/formats/CSVSpliterator.js +172 -0
- package/out/lib/formats/CSVSpliterator.js.map +1 -0
- package/out/lib/formats/JSONSpliterator.d.ts +44 -0
- package/out/lib/formats/JSONSpliterator.d.ts.map +1 -0
- package/out/lib/formats/JSONSpliterator.js +77 -0
- package/out/lib/formats/JSONSpliterator.js.map +1 -0
- package/out/lib/formats/PSVSpliterator.d.ts +21 -0
- package/out/lib/formats/PSVSpliterator.d.ts.map +1 -0
- package/out/lib/formats/PSVSpliterator.js +22 -0
- package/out/lib/formats/PSVSpliterator.js.map +1 -0
- package/out/lib/formats/TSVSpliterator.d.ts +21 -0
- package/out/lib/formats/TSVSpliterator.d.ts.map +1 -0
- package/out/lib/formats/TSVSpliterator.js +22 -0
- package/out/lib/formats/TSVSpliterator.js.map +1 -0
- package/out/lib/formats/TextSpliterator.d.ts +53 -0
- package/out/lib/formats/TextSpliterator.d.ts.map +1 -0
- package/out/lib/formats/TextSpliterator.js +67 -0
- package/out/lib/formats/TextSpliterator.js.map +1 -0
- package/out/lib/formats/XLSXSpliterator.d.ts +143 -0
- package/out/lib/formats/XLSXSpliterator.d.ts.map +1 -0
- package/out/lib/formats/XLSXSpliterator.js +161 -0
- package/out/lib/formats/XLSXSpliterator.js.map +1 -0
- package/out/lib/formats/casing.d.ts +27 -0
- package/out/lib/formats/casing.d.ts.map +1 -0
- package/out/lib/formats/casing.js +68 -0
- package/out/lib/formats/casing.js.map +1 -0
- package/out/lib/formats/row-emitters.d.ts +35 -0
- package/out/lib/formats/row-emitters.d.ts.map +1 -0
- package/out/lib/formats/row-emitters.js +50 -0
- package/out/lib/formats/row-emitters.js.map +1 -0
- package/out/lib/internal/shared.d.ts +155 -0
- package/out/lib/internal/shared.d.ts.map +1 -0
- package/out/lib/internal/shared.js +41 -0
- package/out/lib/internal/shared.js.map +1 -0
- package/out/lib/internal/utils.d.ts +37 -0
- package/out/lib/internal/utils.d.ts.map +1 -0
- package/out/lib/internal/utils.js +39 -0
- package/out/lib/internal/utils.js.map +1 -0
- package/out/lib/io/adaptive-source.d.ts +39 -0
- package/out/lib/io/adaptive-source.d.ts.map +1 -0
- package/out/lib/io/adaptive-source.js +95 -0
- package/out/lib/io/adaptive-source.js.map +1 -0
- package/out/lib/io/writer.d.ts +45 -0
- package/out/lib/io/writer.d.ts.map +1 -0
- package/out/lib/io/writer.js +57 -0
- package/out/lib/io/writer.js.map +1 -0
- package/out/lib/iterators/AsyncSequence.d.ts +180 -0
- package/out/lib/iterators/AsyncSequence.d.ts.map +1 -0
- package/out/lib/iterators/AsyncSequence.js +432 -0
- package/out/lib/iterators/AsyncSequence.js.map +1 -0
- package/out/lib/iterators/chunks.d.ts +20 -0
- package/out/lib/iterators/chunks.d.ts.map +1 -0
- package/out/lib/iterators/chunks.js +36 -0
- package/out/lib/iterators/chunks.js.map +1 -0
- package/out/lib/iterators/pivot.d.ts +30 -0
- package/out/lib/iterators/pivot.d.ts.map +1 -0
- package/out/lib/iterators/pivot.js +47 -0
- package/out/lib/iterators/pivot.js.map +1 -0
- package/out/lib/iterators/zip.d.ts +33 -0
- package/out/lib/iterators/zip.d.ts.map +1 -0
- package/out/lib/iterators/zip.js +59 -0
- package/out/lib/iterators/zip.js.map +1 -0
- package/out/lib/parallel/merge-async-iterators.d.ts +12 -0
- package/out/lib/parallel/merge-async-iterators.d.ts.map +1 -0
- package/out/lib/parallel/merge-async-iterators.js +39 -0
- package/out/lib/parallel/merge-async-iterators.js.map +1 -0
- package/out/lib/parallel/parallel-map-runtime.d.ts +22 -0
- package/out/lib/parallel/parallel-map-runtime.d.ts.map +1 -0
- package/out/lib/parallel/parallel-map-runtime.js +60 -0
- package/out/lib/parallel/parallel-map-runtime.js.map +1 -0
- package/out/lib/parallel/parallel-map-worker-entry.d.ts +11 -0
- package/out/lib/parallel/parallel-map-worker-entry.d.ts.map +1 -0
- package/out/lib/parallel/parallel-map-worker-entry.js +41 -0
- package/out/lib/parallel/parallel-map-worker-entry.js.map +1 -0
- package/out/lib/parallel/parallel-map-workers.d.ts +57 -0
- package/out/lib/parallel/parallel-map-workers.d.ts.map +1 -0
- package/out/lib/parallel/parallel-map-workers.js +82 -0
- package/out/lib/parallel/parallel-map-workers.js.map +1 -0
- package/out/lib/parallel/parallel-map.d.ts +28 -0
- package/out/lib/parallel/parallel-map.d.ts.map +1 -0
- package/out/lib/parallel/parallel-map.js +30 -0
- package/out/lib/parallel/parallel-map.js.map +1 -0
- package/out/lib/parallel/segment-runtime.d.ts +27 -0
- package/out/lib/parallel/segment-runtime.d.ts.map +1 -0
- package/out/lib/parallel/segment-runtime.js +41 -0
- package/out/lib/parallel/segment-runtime.js.map +1 -0
- package/out/lib/parallel/segment-worker-entry.d.ts +10 -0
- package/out/lib/parallel/segment-worker-entry.d.ts.map +1 -0
- package/out/lib/parallel/segment-worker-entry.js +59 -0
- package/out/lib/parallel/segment-worker-entry.js.map +1 -0
- package/out/lib/parallel/segment-workers.d.ts +56 -0
- package/out/lib/parallel/segment-workers.d.ts.map +1 -0
- package/out/lib/parallel/segment-workers.js +110 -0
- package/out/lib/parallel/segment-workers.js.map +1 -0
- package/out/lib/parallel/segments.d.ts +31 -0
- package/out/lib/parallel/segments.d.ts.map +1 -0
- package/out/lib/parallel/segments.js +52 -0
- package/out/lib/parallel/segments.js.map +1 -0
- package/out/lib/wasm_base64.d.ts +4 -1
- package/out/lib/wasm_base64.d.ts.map +1 -1
- package/out/lib/wasm_base64.js +4 -1
- package/out/lib/wasm_base64.js.map +1 -1
- package/out/lib/wasm_module.d.ts +15 -0
- package/out/lib/wasm_module.d.ts.map +1 -1
- package/out/lib/wasm_module.js +2 -1
- package/out/lib/wasm_module.js.map +1 -1
- package/out/node/cli/commands/csv.d.ts +113 -0
- package/out/node/cli/commands/csv.d.ts.map +1 -1
- package/out/node/cli/commands/csv.js +34 -36
- package/out/node/cli/commands/csv.js.map +1 -1
- package/out/node/cli/commands/iterate.d.ts +92 -0
- package/out/node/cli/commands/iterate.d.ts.map +1 -1
- package/out/node/cli/commands/iterate.js +26 -28
- package/out/node/cli/commands/iterate.js.map +1 -1
- package/out/node/cli/commands/parallel.d.ts +102 -0
- package/out/node/cli/commands/parallel.d.ts.map +1 -0
- package/out/node/cli/commands/parallel.js +426 -0
- package/out/node/cli/commands/parallel.js.map +1 -0
- package/out/node/cli/index.js +5 -0
- package/out/node/cli/index.js.map +1 -1
- package/out/node/cli/spec.d.ts +51 -0
- package/out/node/cli/spec.d.ts.map +1 -0
- package/out/node/cli/spec.js +78 -0
- package/out/node/cli/spec.js.map +1 -0
- package/out/node/cli/utils.d.ts +36 -18
- package/out/node/cli/utils.d.ts.map +1 -1
- package/out/node/cli/utils.js +48 -39
- package/out/node/cli/utils.js.map +1 -1
- package/out/node/fs/index.d.ts +1 -1
- package/out/node/fs/index.d.ts.map +1 -1
- package/out/node/fs/index.js +1 -1
- package/out/node/fs/index.js.map +1 -1
- package/package.json +6 -6
package/out/node/cli/utils.d.ts
CHANGED
|
@@ -6,69 +6,87 @@
|
|
|
6
6
|
/**
|
|
7
7
|
* Options accepted by every Spliterator command.
|
|
8
8
|
*/
|
|
9
|
-
export declare const
|
|
9
|
+
export declare const commonOptionSpecs: {
|
|
10
10
|
readonly split: {
|
|
11
11
|
readonly type: "string";
|
|
12
12
|
readonly short: "s";
|
|
13
|
+
readonly hint: "delimiter";
|
|
13
14
|
readonly default: "\n";
|
|
15
|
+
readonly description: "Delimiter to split lines on.";
|
|
14
16
|
};
|
|
15
17
|
readonly join: {
|
|
16
18
|
readonly type: "string";
|
|
17
19
|
readonly short: "j";
|
|
20
|
+
readonly hint: "delimiter";
|
|
18
21
|
readonly default: "\n";
|
|
22
|
+
readonly description: "Delimiter to join lines with.";
|
|
19
23
|
};
|
|
20
24
|
readonly "skip-empty": {
|
|
21
25
|
readonly type: "boolean";
|
|
22
26
|
readonly short: "e";
|
|
23
27
|
readonly default: true;
|
|
28
|
+
readonly description: "Skip empty lines.";
|
|
24
29
|
};
|
|
25
30
|
readonly take: {
|
|
26
|
-
readonly type: "
|
|
31
|
+
readonly type: "number";
|
|
27
32
|
readonly short: "t";
|
|
33
|
+
readonly hint: "count";
|
|
34
|
+
readonly description: "Number of lines to take.";
|
|
35
|
+
readonly validate: (value: number) => boolean;
|
|
36
|
+
readonly validationMessage: "Option --take must be a non-negative integer.";
|
|
28
37
|
};
|
|
29
38
|
readonly drop: {
|
|
30
|
-
readonly type: "
|
|
39
|
+
readonly type: "number";
|
|
31
40
|
readonly short: "p";
|
|
32
|
-
readonly
|
|
41
|
+
readonly hint: "count";
|
|
42
|
+
readonly default: 0;
|
|
43
|
+
readonly description: "Number of lines to drop.";
|
|
44
|
+
readonly validate: (value: number) => boolean;
|
|
45
|
+
readonly validationMessage: "Option --drop must be a non-negative integer.";
|
|
33
46
|
};
|
|
34
47
|
readonly debug: {
|
|
35
48
|
readonly type: "boolean";
|
|
36
49
|
readonly short: "v";
|
|
37
50
|
readonly default: false;
|
|
51
|
+
readonly description: "Enable debug logging.";
|
|
38
52
|
};
|
|
39
53
|
readonly "reader-high-water-mark": {
|
|
40
|
-
readonly type: "
|
|
54
|
+
readonly type: "number";
|
|
41
55
|
readonly short: "w";
|
|
42
|
-
readonly
|
|
56
|
+
readonly hint: "bytes";
|
|
57
|
+
readonly default: number;
|
|
58
|
+
readonly description: "Input stream buffer size.";
|
|
59
|
+
readonly validate: (value: number) => boolean;
|
|
60
|
+
readonly validationMessage: "Option --reader-high-water-mark must be a positive integer.";
|
|
43
61
|
};
|
|
44
62
|
readonly "writer-high-water-mark": {
|
|
45
|
-
readonly type: "
|
|
63
|
+
readonly type: "number";
|
|
46
64
|
readonly short: "W";
|
|
47
|
-
readonly
|
|
65
|
+
readonly hint: "bytes";
|
|
66
|
+
readonly default: number;
|
|
67
|
+
readonly description: "Output stream buffer size.";
|
|
68
|
+
readonly validate: (value: number) => boolean;
|
|
69
|
+
readonly validationMessage: "Option --writer-high-water-mark must be a positive integer.";
|
|
48
70
|
};
|
|
49
71
|
readonly filter: {
|
|
50
72
|
readonly type: "string";
|
|
51
73
|
readonly short: "f";
|
|
74
|
+
readonly hint: "path";
|
|
75
|
+
readonly description: "JS module exporting a default filter.";
|
|
52
76
|
};
|
|
53
77
|
readonly source: {
|
|
54
78
|
readonly type: "string";
|
|
55
79
|
readonly short: "i";
|
|
80
|
+
readonly hint: "path";
|
|
81
|
+
readonly description: "Source file, if not given positionally.";
|
|
56
82
|
};
|
|
57
83
|
readonly destination: {
|
|
58
84
|
readonly type: "string";
|
|
59
85
|
readonly short: "o";
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
readonly type: "boolean";
|
|
63
|
-
readonly short: "h";
|
|
64
|
-
readonly default: false;
|
|
86
|
+
readonly hint: "path";
|
|
87
|
+
readonly description: "Destination file, if not given positionally.";
|
|
65
88
|
};
|
|
66
89
|
};
|
|
67
|
-
export declare const commonOptionsHelp: string;
|
|
68
|
-
/**
|
|
69
|
-
* Coerce a numeric option, exiting with a usage error if it isn't a number.
|
|
70
|
-
*/
|
|
71
|
-
export declare function toNumber(name: string, input: string | undefined): number | undefined;
|
|
72
90
|
/**
|
|
73
91
|
* Resolve the source and destination paths from positionals, falling back to their flag forms.
|
|
74
92
|
*/
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"utils.d.ts","sourceRoot":"","sources":["../../../node/cli/utils.ts"],"names":[],"mappings":"AAAA;;;;GAIG;AAIH;;GAEG;AACH,eAAO,MAAM,
|
|
1
|
+
{"version":3,"file":"utils.d.ts","sourceRoot":"","sources":["../../../node/cli/utils.ts"],"names":[],"mappings":"AAAA;;;;GAIG;AAIH;;GAEG;AACH,eAAO,MAAM,iBAAiB;;iBACpB,IAAI,EAAE,QAAQ;iBAAE,KAAK,EAAE,GAAG;iBAAE,IAAI,EAAE,WAAW;iBAAE,OAAO,EAAE,IAAI;iBAAE,WAAW,EAAE,8BAA8B;;;iBAC1G,IAAI,EAAE,QAAQ;iBAAE,KAAK,EAAE,GAAG;iBAAE,IAAI,EAAE,WAAW;iBAAE,OAAO,EAAE,IAAI;iBAAE,WAAW,EAAE,+BAA+B;;;iBAClG,IAAI,EAAE,SAAS;iBAAE,KAAK,EAAE,GAAG;iBAAE,OAAO;iBAAQ,WAAW,EAAE,mBAAmB;;;uBAErF,QAAQ;wBACP,GAAG;uBACJ,OAAO;8BACA,0BAA0B;;oCAEpB,+CAA+C;;;uBAG5D,QAAQ;wBACP,GAAG;uBACJ,OAAO;0BACJ,CAAC;8BACG,0BAA0B;;oCAEpB,+CAA+C;;;iBAE1D,IAAI,EAAE,SAAS;iBAAE,KAAK,EAAE,GAAG;iBAAE,OAAO;iBAAS,WAAW,EAAE,uBAAuB;;;uBAEnF,QAAQ;wBACP,GAAG;uBACJ,OAAO;;8BAEA,2BAA2B;;oCAErB,6DAA6D;;;uBAG1E,QAAQ;wBACP,GAAG;uBACJ,OAAO;;8BAEA,4BAA4B;;oCAEtB,6DAA6D;;;iBAEvE,IAAI,EAAE,QAAQ;iBAAE,KAAK,EAAE,GAAG;iBAAE,IAAI,EAAE,MAAM;iBAAE,WAAW,EAAE,uCAAuC;;;iBAC9F,IAAI,EAAE,QAAQ;iBAAE,KAAK,EAAE,GAAG;iBAAE,IAAI,EAAE,MAAM;iBAAE,WAAW,EAAE,yCAAyC;;;iBAEzG,IAAI,EAAE,QAAQ;iBACd,KAAK,EAAE,GAAG;iBACV,IAAI,EAAE,MAAM;iBACZ,WAAW,EAAE,8CAA8C;;CAEJ,CAAA;AAEzD;;GAEG;AACH,wBAAgB,SAAS,CACxB,WAAW,EAAE,MAAM,EAAE,EACrB,MAAM,EAAE;IAAE,MAAM,CAAC,EAAE,MAAM,CAAC;IAAC,WAAW,CAAC,EAAE,MAAM,CAAA;CAAE,GAC/C,CAAC,MAAM,EAAE,MAAM,EAAE,WAAW,EAAE,MAAM,CAAC,CAavC;AAED;;GAEG;AACH,wBAAgB,UAAU,CAAC,OAAO,EAAE,MAAM,GAAG,KAAK,CAIjD;AAED;;;;;;GAMG;AACH,MAAM,MAAM,iBAAiB,GAAG,CAAC,IAAI,EAAE,OAAO,KAAK,OAAO,GAAG,WAAW,CAAC,OAAO,CAAC,CAAA;AAEjF;;;;GAIG;AACH,MAAM,MAAM,eAAe,CAAC,CAAC,GAAG,OAAO,IAAI,CAAC,IAAI,EAAE,UAAU,KAAK,CAAC,GAAG,WAAW,CAAC,CAAC,CAAC,CAAA;AAEnF;;GAEG;AACH,MAAM,WAAW,4BAA4B;IAC5C,OAAO,EAAE,eAAe,CAAA;CACxB"}
|
package/out/node/cli/utils.js
CHANGED
|
@@ -6,46 +6,55 @@
|
|
|
6
6
|
/**
|
|
7
7
|
* Options accepted by every Spliterator command.
|
|
8
8
|
*/
|
|
9
|
-
export const
|
|
10
|
-
split: { type: "string", short: "s", default: "\n" },
|
|
11
|
-
join: { type: "string", short: "j", default: "\n" },
|
|
12
|
-
"skip-empty": { type: "boolean", short: "e", default: true },
|
|
13
|
-
take: {
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
9
|
+
export const commonOptionSpecs = {
|
|
10
|
+
split: { type: "string", short: "s", hint: "delimiter", default: "\n", description: "Delimiter to split lines on." },
|
|
11
|
+
join: { type: "string", short: "j", hint: "delimiter", default: "\n", description: "Delimiter to join lines with." },
|
|
12
|
+
"skip-empty": { type: "boolean", short: "e", default: true, description: "Skip empty lines." },
|
|
13
|
+
take: {
|
|
14
|
+
type: "number",
|
|
15
|
+
short: "t",
|
|
16
|
+
hint: "count",
|
|
17
|
+
description: "Number of lines to take.",
|
|
18
|
+
validate: (value) => Number.isInteger(value) && value >= 0,
|
|
19
|
+
validationMessage: "Option --take must be a non-negative integer.",
|
|
20
|
+
},
|
|
21
|
+
drop: {
|
|
22
|
+
type: "number",
|
|
23
|
+
short: "p",
|
|
24
|
+
hint: "count",
|
|
25
|
+
default: 0,
|
|
26
|
+
description: "Number of lines to drop.",
|
|
27
|
+
validate: (value) => Number.isInteger(value) && value >= 0,
|
|
28
|
+
validationMessage: "Option --drop must be a non-negative integer.",
|
|
29
|
+
},
|
|
30
|
+
debug: { type: "boolean", short: "v", default: false, description: "Enable debug logging." },
|
|
31
|
+
"reader-high-water-mark": {
|
|
32
|
+
type: "number",
|
|
33
|
+
short: "w",
|
|
34
|
+
hint: "bytes",
|
|
35
|
+
default: 4096 * 16,
|
|
36
|
+
description: "Input stream buffer size.",
|
|
37
|
+
validate: (value) => Number.isInteger(value) && value >= 1,
|
|
38
|
+
validationMessage: "Option --reader-high-water-mark must be a positive integer.",
|
|
39
|
+
},
|
|
40
|
+
"writer-high-water-mark": {
|
|
41
|
+
type: "number",
|
|
42
|
+
short: "W",
|
|
43
|
+
hint: "bytes",
|
|
44
|
+
default: 4096 * 16 * 4,
|
|
45
|
+
description: "Output stream buffer size.",
|
|
46
|
+
validate: (value) => Number.isInteger(value) && value >= 1,
|
|
47
|
+
validationMessage: "Option --writer-high-water-mark must be a positive integer.",
|
|
48
|
+
},
|
|
49
|
+
filter: { type: "string", short: "f", hint: "path", description: "JS module exporting a default filter." },
|
|
50
|
+
source: { type: "string", short: "i", hint: "path", description: "Source file, if not given positionally." },
|
|
51
|
+
destination: {
|
|
52
|
+
type: "string",
|
|
53
|
+
short: "o",
|
|
54
|
+
hint: "path",
|
|
55
|
+
description: "Destination file, if not given positionally.",
|
|
56
|
+
},
|
|
22
57
|
};
|
|
23
|
-
export const commonOptionsHelp = [
|
|
24
|
-
" -s, --split <delimiter> Delimiter to split lines on (default: newline)",
|
|
25
|
-
" -j, --join <delimiter> Delimiter to join lines on (default: newline)",
|
|
26
|
-
" -e, --skip-empty Skip empty lines (default: true, disable with --no-skip-empty)",
|
|
27
|
-
" -t, --take <count> Number of lines to take (default: all)",
|
|
28
|
-
" -p, --drop <count> Number of lines to drop (default: 0)",
|
|
29
|
-
" -v, --debug Debug mode",
|
|
30
|
-
" -w, --reader-high-water-mark High water mark for the read stream (default: 65536)",
|
|
31
|
-
" -W, --writer-high-water-mark High water mark for the write stream (default: 262144)",
|
|
32
|
-
" -f, --filter <path> Path to JS file exporting a default filter function",
|
|
33
|
-
" -i, --source <path> Source file, if not given positionally",
|
|
34
|
-
" -o, --destination <path> Destination file, if not given positionally",
|
|
35
|
-
" -h, --help Show this help",
|
|
36
|
-
].join("\n");
|
|
37
|
-
/**
|
|
38
|
-
* Coerce a numeric option, exiting with a usage error if it isn't a number.
|
|
39
|
-
*/
|
|
40
|
-
export function toNumber(name, input) {
|
|
41
|
-
if (input === undefined)
|
|
42
|
-
return undefined;
|
|
43
|
-
const value = Number(input);
|
|
44
|
-
if (!Number.isFinite(value)) {
|
|
45
|
-
usageError(`Option --${name} expects a number, received "${input}".`);
|
|
46
|
-
}
|
|
47
|
-
return value;
|
|
48
|
-
}
|
|
49
58
|
/**
|
|
50
59
|
* Resolve the source and destination paths from positionals, falling back to their flag forms.
|
|
51
60
|
*/
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"utils.js","sourceRoot":"","sources":["../../../node/cli/utils.ts"],"names":[],"mappings":"AAAA;;;;GAIG;AAIH;;GAEG;AACH,MAAM,CAAC,MAAM,
|
|
1
|
+
{"version":3,"file":"utils.js","sourceRoot":"","sources":["../../../node/cli/utils.ts"],"names":[],"mappings":"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"}
|
package/out/node/fs/index.d.ts
CHANGED
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
*/
|
|
6
6
|
import { type CreateWriteStreamOptions } from "node:fs/promises";
|
|
7
7
|
import { WritableStream } from "node:stream/web";
|
|
8
|
-
import { type AsyncChunkIterator, type AsyncDataResource } from "../../lib/shared.js";
|
|
8
|
+
import { type AsyncChunkIterator, type AsyncDataResource } from "../../lib/internal/shared.js";
|
|
9
9
|
/**
|
|
10
10
|
* Create a readable stream from a file system source.
|
|
11
11
|
*
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../node/fs/index.ts"],"names":[],"mappings":"AAAA;;;;GAIG;AAEH,OAAO,EAAE,KAAK,wBAAwB,EAAc,MAAM,kBAAkB,CAAA;AAE5E,OAAO,EAAE,cAAc,EAAE,MAAM,iBAAiB,CAAA;AAIhD,OAAO,EAAE,KAAK,kBAAkB,EAAE,KAAK,iBAAiB,EAAoB,MAAM,
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../node/fs/index.ts"],"names":[],"mappings":"AAAA;;;;GAIG;AAEH,OAAO,EAAE,KAAK,wBAAwB,EAAc,MAAM,kBAAkB,CAAA;AAE5E,OAAO,EAAE,cAAc,EAAE,MAAM,iBAAiB,CAAA;AAIhD,OAAO,EAAE,KAAK,kBAAkB,EAAE,KAAK,iBAAiB,EAAoB,MAAM,8BAA8B,CAAA;AAEhH;;;;;;;;;GASG;AACH,wBAAsB,gBAAgB,CAAC,MAAM,EAAE,OAAO,EAAE,aAAa,EAAE,MAAM,GAAG,OAAO,CAAC,kBAAkB,CAAC,CAgB1G;AAED;;;;;;;;;GASG;AACH,wBAAsB,wBAAwB,CAC7C,WAAW,EAAE,OAAO,EACpB,OAAO,GAAE,wBAA6B,GACpC,OAAO,CAAC,cAAc,CAAC,CAkDzB;AAED,MAAM,WAAW,0BAA0B;IAC1C;;OAEG;IACH,aAAa,CAAC,EAAE,MAAM,CAAA;IAEtB;;OAEG;IACH,KAAK,CAAC,EAAE,MAAM,CAAA;IAEd;;;OAGG;IACH,GAAG,CAAC,EAAE,MAAM,CAAA;CACZ;AAED;;;;;;;GAOG;AACH,wBAAsB,YAAY,CAAC,MAAM,EAAE,iBAAiB,GAAG,OAAO,CAAC,MAAM,CAAC,CAU7E;AAED;;;;;GAKG;AACH,wBAAsB,SAAS,CAAC,MAAM,EAAE,iBAAiB,EAAE,KAAK,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,GAAG,OAAO,CAAC,UAAU,CAAC,CAkB7G;AAED;;;;;GAKG;AACH,wBAAsB,mBAAmB,CACxC,MAAM,EAAE,iBAAiB,GAAG,kBAAkB,EAC9C,EAAE,aAAyB,EAAE,KAAS,EAAE,GAAG,EAAE,GAAE,0BAA+B,GAC5E,OAAO,CAAC,kBAAkB,CAAC,CAuD7B;eAEc,mBAAmB"}
|
package/out/node/fs/index.js
CHANGED
|
@@ -6,7 +6,7 @@
|
|
|
6
6
|
import { open, stat } from "node:fs/promises";
|
|
7
7
|
import { WritableStream } from "node:stream/web";
|
|
8
8
|
import { PathBuilder } from "path-ts";
|
|
9
|
-
import { isFileHandleLike } from "../../lib/shared.js";
|
|
9
|
+
import { isFileHandleLike } from "../../lib/internal/shared.js";
|
|
10
10
|
/**
|
|
11
11
|
* Create a readable stream from a file system source.
|
|
12
12
|
*
|
package/out/node/fs/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../node/fs/index.ts"],"names":[],"mappings":"AAAA;;;;GAIG;AAEH,OAAO,EAAiC,IAAI,EAAE,IAAI,EAAE,MAAM,kBAAkB,CAAA;AAE5E,OAAO,EAAE,cAAc,EAAE,MAAM,iBAAiB,CAAA;AAEhD,OAAO,EAAE,WAAW,EAAE,MAAM,SAAS,CAAA;AAErC,OAAO,EAAmD,gBAAgB,EAAE,MAAM,
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../node/fs/index.ts"],"names":[],"mappings":"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"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "spliterator",
|
|
3
|
-
"version": "6.
|
|
3
|
+
"version": "6.2.0",
|
|
4
4
|
"description": "Line-delimited iterator library for CSV, NDJSON, and other delimited formats.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"csv",
|
|
@@ -40,11 +40,11 @@
|
|
|
40
40
|
"./package.json": "./package.json",
|
|
41
41
|
".": "./out/index.js",
|
|
42
42
|
"./node/fs": "./out/node/fs/index.js",
|
|
43
|
-
"./merge-async-iterators": "./out/lib/merge-async-iterators.js",
|
|
44
|
-
"./parallel-map-runtime": "./out/lib/parallel-map-runtime.js",
|
|
45
|
-
"./segment-runtime": "./out/lib/segment-runtime.js",
|
|
46
|
-
"./segment-workers": "./out/lib/segment-workers.js",
|
|
47
|
-
"./test/utils": "./out/test/utils.js"
|
|
43
|
+
"./merge-async-iterators": "./out/lib/parallel/merge-async-iterators.js",
|
|
44
|
+
"./parallel-map-runtime": "./out/lib/parallel/parallel-map-runtime.js",
|
|
45
|
+
"./segment-runtime": "./out/lib/parallel/segment-runtime.js",
|
|
46
|
+
"./segment-workers": "./out/lib/parallel/segment-workers.js",
|
|
47
|
+
"./test/utils": "./out/test/support/utils.js"
|
|
48
48
|
},
|
|
49
49
|
"publishConfig": {
|
|
50
50
|
"access": "public",
|