* **Supplemental**: Synchronously reads the entire contents of a file. * @param encoding If non-null, the file's contents should be decoded * into a string using that encoding. Otherwise, if encoding is null, fetch * the file's contents as a Buffer.
(fname: string, encoding: string | null, flag: FileFlag)
| 235 | * the file's contents as a Buffer. |
| 236 | */ |
| 237 | readFileSync(fname: string, encoding: string | null, flag: FileFlag): any; |
| 238 | /** |
| 239 | * **Supplemental**: Asynchronously writes data to a file, replacing the file |
| 240 | * if it already exists. |
no outgoing calls
no test coverage detected