(content: string)
| 955 | } |
| 956 | |
| 957 | restore(content: string): string { |
| 958 | return content.replace(/__(?:ph|esc-ph)-(\d+)__/g, (_ph, index) => this.placeholders[+index]); |
| 959 | } |
| 960 | |
| 961 | content(): string { |
| 962 | return this._content; |
no test coverage detected