Skip to content

Commit 9f60e2c

Browse files
committed
Fix wrong call to processValue
1 parent 8e54ea5 commit 9f60e2c

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)