(path)
| 62 | // realpathSync will surface the missing-method error here, which the |
| 63 | // resolver translates into a deny-by-default. GHSA-cp6g-6699-wx9c. |
| 64 | realpath(path) { |
| 65 | return this.fs.realpathSync(path); |
| 66 | } |
| 67 | |
| 68 | isSeparator(char) { |
| 69 | return char === '/' || char === this.path.sep; |
no outgoing calls
no test coverage detected