fix: fix minor gotchas

This commit is contained in:
2026-04-15 14:12:16 +08:00
parent ae2445b79c
commit 392d5f1431
6 changed files with 10 additions and 158 deletions
+1 -1
View File
@@ -43,7 +43,7 @@ describe('parseCsv - basic parsing', () => {
it('should parse CSV with string literal columns (unquoted in CSV)', () => {
const csv = [
'name,status',
'string,on | off',
"string,'on' | 'off'",
'Alice,on',
'Bob,off',
].join('\n');