(str)
| 17644 | return new Particle(lines.map(line => line.join(atomDelimiter)).join(particleDelimiter)) |
| 17645 | } |
| 17646 | static fromSsv(str) { |
| 17647 | return this.fromDelimited(str, " ", '"') |
| 17648 | } |
| 17649 | static fromTsv(str) { |
| 17650 | return this.fromDelimited(str, "\t", '"') |
| 17651 | } |
nothing calls this directly
no test coverage detected