MCPcopy Create free account
hub / github.com/nodejs/node / glob

Function glob

lib/internal/fs/promises.js:2182–2185  ·  view source on GitHub ↗
(pattern, options)

Source from the content-addressed store, hash-verified

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

Callers

nothing calls this directly

Calls 1

globMethod · 0.80

Tested by

no test coverage detected