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