Saves the modified content back to the file.
()
| 174 | |
| 175 | /** Saves the modified content back to the file. */ |
| 176 | save(): void { |
| 177 | writeFileSync(this.#path, this.#content); |
| 178 | } |
| 179 | |
| 180 | /** Detects the indentation of the file. */ |
| 181 | #detectIndentation(): void { |
no outgoing calls
no test coverage detected