(content)
| 552 | return this; |
| 553 | } |
| 554 | prepend(content) { |
| 555 | if (typeof content !== 'string') throw new TypeError('outro content must be a string'); |
| 556 | this.intro = content + this.intro; |
| 557 | return this; |
| 558 | } |
| 559 | prependLeft(index, content) { |
| 560 | if (typeof content !== 'string') throw new TypeError('inserted content must be a string'); |
| 561 | this._split(index); |
nothing calls this directly
no outgoing calls
no test coverage detected