(path: string)
| 123 | export const writeFile = util.promisify(fs.writeFile); |
| 124 | |
| 125 | export function readFileRaw(path: string): Promise<Buffer> { |
| 126 | return fs.promises.readFile(path).catch(() => Buffer.alloc(0)); |
| 127 | } |
| 128 | |
| 129 | export interface IFsUtils { |
| 130 | /** |