(t, e)
| 254 | return ((this.outro += t), this); |
| 255 | } |
| 256 | appendLeft(t, e) { |
| 257 | if (typeof e != 'string') throw new TypeError('inserted content must be a string'); |
| 258 | this._split(t); |
| 259 | const n = this.byEnd[t]; |
| 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); |
no test coverage detected