(p: string)
| 63 | await fs.writeFile(p, data, { encoding: 'utf8', flag: opts?.exclusive ? 'wx' : 'w' }); |
| 64 | }, |
| 65 | async mkdir(p: string): Promise<void> { |
| 66 | await fs.mkdir(p, { recursive: true }); |
| 67 | }, |
| 68 | }; |
| 69 | |
| 70 | // --------------------------------------------------------------------------- |
no test coverage detected