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