()
| 51 | } |
| 52 | |
| 53 | function copyfile() { |
| 54 | const fs = require('fs'); |
| 55 | fs.writeFileSync('fs4.txt', '123', 'utf8'); |
| 56 | fs.copyFile('fs4.txt', 'a.txt', () => { |
| 57 | fs.unlinkSync('fs4.txt'); |
| 58 | fs.unlinkSync('a.txt'); |
| 59 | }); |
| 60 | } |
| 61 | |
| 62 | function fchmod() { |
| 63 | const fs = require('fs'); |
no test coverage detected
searching dependent graphs…