Skip to content

Commit

Permalink
Fix wrong call to processValue
Browse files Browse the repository at this point in the history
  • Loading branch information
juanjoDiaz committed Apr 5, 2020
1 parent 8e54ea5 commit 9f60e2c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/JSON2CSVBase.js
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ class JSON2CSVBase {
*/
getHeader() {
return fastJoin(
this.opts.fields.map(fieldInfo => this.processValue(fieldInfo.label, true)),
this.opts.fields.map(fieldInfo => this.processValue(fieldInfo.label)),
this.opts.delimiter
);
}
Expand Down

0 comments on commit 9f60e2c

Please sign in to comment.