(atom)
| 17446 | return new Set(this.getAtomsFrom(1)) |
| 17447 | } |
| 17448 | appendAtomIfMissing(atom) { |
| 17449 | if (this.getAtomsAsSet().has(atom)) return this |
| 17450 | return this.appendAtom(atom) |
| 17451 | } |
| 17452 | // todo: check to ensure identical objects |
| 17453 | addObjectsAsDelimited(arrayOfObjects, delimiter = Utils._chooseDelimiter(new Particle(arrayOfObjects).toString())) { |
| 17454 | const header = Object.keys(arrayOfObjects[0]) |
nothing calls this directly
no test coverage detected