You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I would expect that when unparse runs and headers are provided as part of the UnparseConfig options that the returned string will just have a single row of headers instead of empty string.
Example:
const headers = ['header1', 'header2', 'header3'];
const config = { columns: headers, };
let headers = unparse([], config); // should be 'header1,header2,header3'
The text was updated successfully, but these errors were encountered:
I would expect that when
unparse
runs and headers are provided as part of theUnparseConfig
options that the returned string will just have a single row of headers instead of empty string.Example:
The text was updated successfully, but these errors were encountered: