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