(particleA, particleB)
| 17715 | return rows |
| 17716 | } |
| 17717 | static multiply(particleA, particleB) { |
| 17718 | const productParticle = particleA.clone() |
| 17719 | productParticle.forEach((particle, index) => { |
| 17720 | particle.setSubparticles(particle.length ? this.multiply(particle, particleB) : particleB.clone()) |
| 17721 | }) |
| 17722 | return productParticle |
| 17723 | } |
| 17724 | // Given an array return a particle |
| 17725 | static _rowsToParticle(rows, delimiter, hasHeaders) { |
| 17726 | const numberOfColumns = rows[0].length |
nothing calls this directly
no test coverage detected