* Appends the specified content to the end of the string.
(content: string)
| 119 | * Appends the specified content to the end of the string. |
| 120 | */ |
| 121 | append(content: string): this { |
| 122 | if (typeof content !== 'string') { |
| 123 | throw new MagicStringError(`content must be a string, got ${typeof content}`) |
| 124 | } |
| 125 | |
| 126 | this.outro += content |
| 127 | return this |
| 128 | } |
| 129 | |
| 130 | /** |
| 131 | * Appends the specified content at the index in the original string. |
nothing calls this directly
no outgoing calls
no test coverage detected