* **Supplemental**: Synchronously writes data to a file, replacing the file * if it already exists. * * The encoding option is ignored if data is a buffer.
(fname: string, data: string | Buffer, encoding: string | null, flag: FileFlag, mode: number)
| 249 | * The encoding option is ignored if data is a buffer. |
| 250 | */ |
| 251 | writeFileSync(fname: string, data: string | Buffer, encoding: string | null, flag: FileFlag, mode: number): void; |
| 252 | /** |
| 253 | * **Supplemental**: Asynchronously append data to a file, creating the file if |
| 254 | * it not yet exists. |
no outgoing calls
no test coverage detected