mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-17 10:02:05 +00:00
feat(Extract from File Node): Add option to set encoding for CSV files (#9392)
This commit is contained in:
@@ -92,6 +92,7 @@ export async function execute(
|
||||
const parser = createCSVParser({
|
||||
delimiter: options.delimiter as string,
|
||||
fromLine: options.fromLine as number,
|
||||
encoding: options.encoding as BufferEncoding,
|
||||
bom: options.enableBOM as boolean,
|
||||
to: maxRowCount > -1 ? maxRowCount : undefined,
|
||||
columns: options.headerRow !== false,
|
||||
|
||||
Reference in New Issue
Block a user