(match: string)
| 356 | |
| 357 | let shouldIndentNextCharacter = options.indentStart !== false |
| 358 | const replacer = (match: string) => { |
| 359 | if (shouldIndentNextCharacter) |
| 360 | return `${resolvedIndentStr}${match}` |
| 361 | shouldIndentNextCharacter = true |
| 362 | return match |
| 363 | } |
| 364 | |
| 365 | this.intro = this.intro.replace(pattern, replacer) |
| 366 |
nothing calls this directly
no outgoing calls
no test coverage detected