(path, opts)
| 1162 | ); |
| 1163 | }, |
| 1164 | async rm(path, opts) { |
| 1165 | await fs.rm(path, opts); |
| 1166 | }, |
| 1167 | async glob(pattern) { |
| 1168 | const { directory, relativePattern } = splitGlobPattern(pattern); |
| 1169 | const matches = await fs.find(directory, relativePattern); |