()
| 95 | } |
| 96 | |
| 97 | function fsync() { |
| 98 | const fs = require('fs'); |
| 99 | fs.writeFileSync('fs9.txt', '123', 'utf8'); |
| 100 | const fd = fs.openSync('fs9.txt', 'r+'); |
| 101 | fs.fsync(fd, () => { |
| 102 | fs.unlinkSync('fs9.txt'); |
| 103 | }); |
| 104 | } |
| 105 | |
| 106 | function ftruncate() { |
| 107 | const fs = require('fs'); |
nothing calls this directly
no test coverage detected
searching dependent graphs…