Alexandre PALO
Results
1
comments of
Alexandre PALO
> used the `preRawData` api. > > ```ts > csv() > .fromFile(path) > .preRawData(str => { > const lines = str.split('\n'); > const trimmedStr = lines.filter(line => /\w/.test(line)).join('\n'); > return...