mirror of
https://github.com/iib0011/omni-tools.git
synced 2025-12-18 10:16:42 +00:00
fix: remove quote when header flag is set to true
This commit is contained in:
parent
d4d63b181c
commit
b96c12bbd2
@ -57,6 +57,9 @@ export function main(input: string, options: InitialValuesType): string {
|
|||||||
|
|
||||||
if (options.headerRow) {
|
if (options.headerRow) {
|
||||||
const headerRow = getCsvHeaders(input, options.csvSeparator);
|
const headerRow = getCsvHeaders(input, options.csvSeparator);
|
||||||
|
headerRow.forEach((header, headerIndex) => {
|
||||||
|
headerRow[headerIndex] = unquoteIfQuoted(header, options.quoteCharacter);
|
||||||
|
});
|
||||||
|
|
||||||
const result: Record<string, string>[] = rows.slice(1).map((row) => {
|
const result: Record<string, string>[] = rows.slice(1).map((row) => {
|
||||||
const entry: Record<string, string> = {};
|
const entry: Record<string, string> = {};
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user