Preserve quotes inside unquoted field

Signed-off-by: CrazyMax <crazy-max@users.noreply.github.com>
This commit is contained in:
CrazyMax
2021-05-23 02:41:02 +02:00
parent 95f997534a
commit c9589d1941
3 changed files with 18 additions and 0 deletions

View File

@ -185,6 +185,7 @@ export async function getInputList(name: string, ignoreComma?: boolean): Promise
for (let output of (await csvparse(items, {
columns: false,
relax: true,
relaxColumnCount: true,
skipLinesWithEmptyValues: true
})) as Array<string[]>) {