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