()
| 233 | } |
| 234 | |
| 235 | function utime() { |
| 236 | const fs = require('fs'); |
| 237 | fs.writeFileSync('fs25.txt', '123', 'utf8'); |
| 238 | fs.utimes('fs25.txt', 1, 1, () => { |
| 239 | fs.unlinkSync('fs25.txt'); |
| 240 | }); |
| 241 | } |
| 242 | |
| 243 | function write() { |
| 244 | const fs = require('fs'); |
nothing calls this directly
no test coverage detected