mirror of
https://github.com/iib0011/omni-tools.git
synced 2025-11-08 17:46:45 +05:30
fix: remove quote when header flag is set to true
This commit is contained in:
parent
d4d63b181c
commit
b96c12bbd2
1 changed files with 3 additions and 0 deletions
|
|
@ -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…
Add table
Add a link
Reference in a new issue