(path, options)
| 238 | } |
| 239 | }, |
| 240 | realpathSync(path, options) { |
| 241 | const result = vfsRead(path, 'realpath', (vfs, n) => vfs.realpathSync(n)); |
| 242 | if (result !== undefined && options?.encoding === 'buffer') { |
| 243 | return Buffer.from(result); |
| 244 | } |
| 245 | return result; |
| 246 | }, |
| 247 | accessSync(path, mode) { |
| 248 | const pathStr = toPathStr(path); |
| 249 | if (pathStr !== null) { |
no test coverage detected
searching dependent graphs…