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
When I load this file in the browser in my webpacked bundle, it fails due to an illegal character. See ISSUE_HERE below. When I manually delete this character everything works fine.
Please update the module and post new version to NPM. Thanks.
for (var i=start; i<lines.length; i++) {
var obj = {};
var currentline=lines[i].split(new RegExp(content.separator+'(?![^"]*"(?:(?:[^"]*"){2})*[^"]*$)'));
if ( currentline.length === columnCount ) {
if (content.header)Â { //ISSUE_HERE (as copied out of Chome debugger)
for (var j=0; j<headers.length; j++) {
obj[headers[j]] = currentline[j];
}
} else {
for (var k=0; k<currentline.length; k++) {
obj[k] = currentline[k];
}
}
result.push(obj);
}
The text was updated successfully, but these errors were encountered:
When I load this file in the browser in my webpacked bundle, it fails due to an illegal character. See ISSUE_HERE below. When I manually delete this character everything works fine.
Please update the module and post new version to NPM. Thanks.
The text was updated successfully, but these errors were encountered: