* Prepends the string with the specified content.
(content: string)
| 691 | * Prepends the string with the specified content. |
| 692 | */ |
| 693 | prepend(content: string): this { |
| 694 | if (typeof content !== 'string') { |
| 695 | throw new MagicStringError(`content must be a string, got ${typeof content}`) |
| 696 | } |
| 697 | |
| 698 | this.intro = content + this.intro |
| 699 | return this |
| 700 | } |
| 701 | |
| 702 | /** |
| 703 | * 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