(t, e)
| 454 | return ((this.intro = t + this.intro), this); |
| 455 | } |
| 456 | prependLeft(t, e) { |
| 457 | if (typeof e != 'string') throw new TypeError('inserted content must be a string'); |
| 458 | this._split(t); |
| 459 | const n = this.byEnd[t]; |
| 460 | return (n ? n.prependLeft(e) : (this.intro = e + this.intro), this); |
| 461 | } |
| 462 | prependRight(t, e) { |
| 463 | if (typeof e != 'string') throw new TypeError('inserted content must be a string'); |
| 464 | this._split(t); |
nothing calls this directly
no test coverage detected