* Prepends the string with the specified content.
(content: string)
| 650 | * Prepends the string with the specified content. |
| 651 | */ |
| 652 | prepend(content: string): this { |
| 653 | if (typeof content !== 'string') |
| 654 | throw new TypeError('outro content must be a string') |
| 655 | |
| 656 | this.intro = content + this.intro |
| 657 | return this |
| 658 | } |
| 659 | |
| 660 | /** |
| 661 | * Same as `s.appendLeft(...)`, except that the inserted content will go *before* any previous appends or prepends at index |
nothing calls this directly
no outgoing calls
no test coverage detected