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