-
-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Dynamic Type Inference and User-Defined Types from CSV Headers (#329)
* refactor: #69 Dynamic Type Inference and User-Defined Types from CSV Headers * fix: #69 fix join * add: #69 add test * update: enable typecheck * refactor: #69 Dynamic Type Inference and User-Defined Types from CSV Headers - parseString * refactor: #69 Dynamic Type Inference and User-Defined Types from CSV Headers - parseStringStream * refactor: #69 test * refactor: #69 parse type * refactor: #69 `PickHeader` -> `PickCSVHeader` * refactor: #69 fix newline * refactor: #69 Dynamic Type Inference and User-Defined Types from CSV Headers - parseStringStreamToStream * refactor: #69 Dynamic Type Inference and User-Defined Types from CSV Headers - parseStringToArraySync * refactor: #69 Dynamic Type Inference and User-Defined Types from CSV Headers - parseStringToArraySyncWASM * refactor: #69 Dynamic Type Inference and User-Defined Types from CSV Headers - parseStringToIterableIterator * refactor: #69 Dynamic Type Inference and User-Defined Types from CSV Headers - parseStringToStream * fix: #69 escape delimiter * fix: pick header type * fix * fix * Revert "Refactor/#69 infer csv header type 2" * fix: pick header type * support escape quotation * fix * common -> utils * update test * default delimiter and quotation * default delimiter and quotation * add test * tuning * fix * remove biome ignore comment * remove vitest typecheck * fix type check * Resolve failed resovation of conflict in Lexer.ts * Add changeset * Imorove tsdoc example code * Add codecov.yml to ignore test declaration files * Fix codecov.yml * feat: Improve to accept type parameters as const, eliminating the need to specify a readonly clause * style: Fix import order --------- Co-authored-by: nagasawaryoya <nagasawaryoya@gmail.com>
- Loading branch information
1 parent
5d01c39
commit 0d717de
Showing
27 changed files
with
1,727 additions
and
44 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
--- | ||
"web-csv-toolbox": minor | ||
--- | ||
|
||
Dynamic Type Inference and User-Defined Types from CSV Headers |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
ignore: | ||
- "**/*.test-d.ts" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.