Adding sep= to the top of file to help with opening csv files
When adding a delimitter as follows:
```
const dataToConvert = {
data: result,
filename: `${props.name}.csv`,
delimiter: ';',
headers: Object.keys(result[0])
}
```
The delimitter should be added at the top of the file to help with opening it.

关闭于 2024-08-20 2 条评论