Split CSV-formatted string into field array with proper unescaping.
This type handles CSV-specific parsing:
const header = `name,age,city,zip`;type _ = SplitCSVFields<typeof header>// ["name", "age", "city", "zip"] Copy
const header = `name,age,city,zip`;type _ = SplitCSVFields<typeof header>// ["name", "age", "city", "zip"]
const header = `name@$age$@city@zip`;type _ = SplitCSVFields<typeof header, "@", "$">// ["name", "a\nge", "city", "zip"] Copy
const header = `name@$age$@city@zip`;type _ = SplitCSVFields<typeof header, "@", "$">// ["name", "a\nge", "city", "zip"]
Split CSV-formatted string into field array with proper unescaping.