Generates a delimiter-separated tuple of CSV headers from a CSVString.
const csv = `name,ageAlice,42Bob,69`;type _ = PickCSVHeader<typeof csv>// ["name", "age"] Copy
const csv = `name,ageAlice,42Bob,69`;type _ = PickCSVHeader<typeof csv>// ["name", "age"]
const csv = `name@$age$$Alice$@42Bob@69`;type _ = PickCSVHeader<typeof csv, "@", "$">// ["name", "a\nge"] Copy
const csv = `name@$age$$Alice$@42Bob@69`;type _ = PickCSVHeader<typeof csv, "@", "$">// ["name", "a\nge"]
Generates a delimiter-separated tuple of CSV headers from a CSVString.