()
| 122 | } |
| 123 | |
| 124 | function lutime() { |
| 125 | const fs = require('fs'); |
| 126 | fs.writeFileSync('fs111.txt', '123', 'utf8'); |
| 127 | fs.lutimes('fs111.txt', 1, 1, () => { |
| 128 | fs.unlinkSync('fs111.txt'); |
| 129 | }); |
| 130 | } |
| 131 | |
| 132 | function lchown({ uid, gid }) { |
| 133 | const fs = require('fs'); |
nothing calls this directly
no test coverage detected
searching dependent graphs…