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