(t, e)
| 260 | return (n ? n.appendLeft(e) : (this.intro += e), this); |
| 261 | } |
| 262 | appendRight(t, e) { |
| 263 | if (typeof e != 'string') throw new TypeError('inserted content must be a string'); |
| 264 | this._split(t); |
| 265 | const n = this.byStart[t]; |
| 266 | return (n ? n.appendRight(e) : (this.outro += e), this); |
| 267 | } |
| 268 | clone() { |
| 269 | const t = new f(this.original, { filename: this.filename }); |
| 270 | let e = this.firstChunk, |
nothing calls this directly
no test coverage detected