(delimiter = Utils._chooseDelimiter(this.subparticlesToString()))
| 17466 | return this.setSubparticles(particle.toDelimited(delimiter)) |
| 17467 | } |
| 17468 | convertSubparticlesToDelimited(delimiter = Utils._chooseDelimiter(this.subparticlesToString())) { |
| 17469 | // todo: handle newlines!!! |
| 17470 | return this.setSubparticles(this.toDelimited(delimiter)) |
| 17471 | } |
| 17472 | addUniqueRowsToNestedDelimited(header, rowsAsStrings) { |
| 17473 | if (!this.length) this.appendLine(header) |
| 17474 | // todo: this looks brittle |
nothing calls this directly
no test coverage detected