(columns)
| 17168 | } |
| 17169 | // todo: remove? |
| 17170 | getParticlesByLinePrefixes(columns) { |
| 17171 | const matches = [] |
| 17172 | this._getParticlesByLineRegex( |
| 17173 | matches, |
| 17174 | columns.map(str => new RegExp("^" + str)) |
| 17175 | ) |
| 17176 | return matches |
| 17177 | } |
| 17178 | particlesThatStartWith(prefix) { |
| 17179 | return this.filter(particle => particle.getLine().startsWith(prefix)) |
| 17180 | } |
nothing calls this directly
no test coverage detected