(filePath: string)
| 242 | } |
| 243 | |
| 244 | async stat(filePath: string) { |
| 245 | filePath = path.normalize(filePath); |
| 246 | return this._statEntry(this._assertExists(filePath)); |
| 247 | } |
| 248 | |
| 249 | async lstat(filePath: string) { |
| 250 | filePath = path.normalize(filePath); |
no test coverage detected