Hello, I noticed a bug in this line:
|
return this.data[index][selector]; |
It does not return an Array
Bit of context:
I'm trying to use the ignoreEmptyStrings: true parameter which results in an error at the above line due to this line:
|
return values.filter((v) => v.trim() !== ''); |
However, even though I fix that bug and apply the parameter, the empty strings are not ignored and the CSV records with empty strings in them are still processed and triple is produced.
Hello, I noticed a bug in this line:
RocketRML/src/input-parser/CSVParser.js
Line 28 in ca8c372
It does not return an Array
Bit of context:
I'm trying to use the
ignoreEmptyStrings: trueparameter which results in an error at the above line due to this line:RocketRML/src/input-parser/helper.js
Line 301 in 450f885
However, even though I fix that bug and apply the parameter, the empty strings are not ignored and the CSV records with empty strings in them are still processed and triple is produced.