csv-parse-line.mjs
35 lines 763 B
Raw
sha256:8915fe406161f95c1681f9469375e7bae5b28c884f00bedbdef65e4b0cd0738d docs(flow): commit FLOW-V0-SPEC.md hygiene for 7A-INT merge Human 23 hours ago
1 /**
2 * Parse a single CSV line respecting quoted fields (commas inside quotes).
3 * @param {string} line
4 * @returns {string[]}
5 */
6 export function parseCSVLine(line) {
7 const out = [];
8 let i = 0;
9 while (i < line.length) {
10 if (line[i] === '"') {
11 i++;
12 let field = '';
13 while (i < line.length) {
14 if (line[i] === '"') {
15 i++;
16 if (line[i] === '"') {
17 field += '"';
18 i++;
19 } else break;
20 } else {
21 field += line[i++];
22 }
23 }
24 out.push(field);
25 } else {
26 let field = '';
27 while (i < line.length && line[i] !== ',') {
28 field += line[i++];
29 }
30 out.push(field.trim());
31 if (line[i] === ',') i++;
32 }
33 }
34 return out;
35 }
File History 1 commit
sha256:8915fe406161f95c1681f9469375e7bae5b28c884f00bedbdef65e4b0cd0738d docs(flow): commit FLOW-V0-SPEC.md hygiene for 7A-INT merge Human 23 hours ago