(name)
| 6251 | }); |
| 6252 | } |
| 6253 | getColumn(name) { |
| 6254 | for(let i = 0; i < this.columns.length; i++){ |
| 6255 | if (this.columns[i].name == name) return this.columns[i]; |
| 6256 | } |
| 6257 | } |
| 6258 | runExpressionOnColumn(datum, ex) { |
| 6259 | const actualDataValue = datum[ex.name]; |
| 6260 | if (ex.operator === "isnullorEmpty") return isnullorEmpty(actualDataValue); |