* Lazily retrieves the string representation. * @return {string}
()
| 138 | * @return {string} |
| 139 | */ |
| 140 | getString () { |
| 141 | if (this._string === null) { |
| 142 | this._string = TextEncoder.stringFromCodePoints(this.getCodePoints()) |
| 143 | } |
| 144 | return this._string |
| 145 | } |
| 146 | |
| 147 | /** |
| 148 | * Alias of {@link Chain.getString}. |
no test coverage detected