(pattern, options)
| 2180 | |
| 2181 | const lazyGlob = getLazy(() => require('internal/fs/glob').Glob); |
| 2182 | async function* glob(pattern, options) { |
| 2183 | const Glob = lazyGlob(); |
| 2184 | yield* new Glob(pattern, options).glob(); |
| 2185 | } |
| 2186 | |
| 2187 | module.exports = { |
| 2188 | exports: { |