Skip to content

Commit 66abd45

Browse files
authored
fix: wrong call to processValue (#454)
1 parent 8e54ea5 commit 66abd45

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/JSON2CSVBase.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ class JSON2CSVBase {
9393
*/
9494
getHeader() {
9595
return fastJoin(
96-
this.opts.fields.map(fieldInfo => this.processValue(fieldInfo.label, true)),
96+
this.opts.fields.map(fieldInfo => this.processValue(fieldInfo.label)),
9797
this.opts.delimiter
9898
);
9999
}

0 commit comments

Comments
 (0)