()
| 248 | } |
| 249 | |
| 250 | function symlink() { |
| 251 | const fs = require('fs'); |
| 252 | fs.writeFileSync('fs27.txt', '123', 'utf8'); |
| 253 | fs.symlink('fs27.txt', 'fs28.txt', () => { |
| 254 | fs.unlinkSync('fs27.txt'); |
| 255 | fs.unlinkSync('fs28.txt'); |
| 256 | }); |
| 257 | } |
| 258 | |
| 259 | function readlink() { |
| 260 | const fs = require('fs'); |
no test coverage detected