(match)
| 409 | } |
| 410 | let shouldIndentNextCharacter = options.indentStart !== false; |
| 411 | const replacer = (match) => { |
| 412 | if (shouldIndentNextCharacter) return `${indentStr}${match}`; |
| 413 | shouldIndentNextCharacter = true; |
| 414 | return match; |
| 415 | }; |
| 416 | this.intro = this.intro.replace(pattern, replacer); |
| 417 | let charIndex = 0; |
| 418 | let chunk = this.firstChunk; |
nothing calls this directly
no outgoing calls
no test coverage detected