MCPcopy Index your code
hub / github.com/nodejs/node / entries

Method entries

lib/internal/fs/dir.js:295–307  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

293 }
294
295 async* entries() {
296 try {
297 while (true) {
298 const result = await this.#readPromisified();
299 if (result === null) {
300 break;
301 }
302 yield result;
303 }
304 } finally {
305 await this.#closePromisified();
306 }
307 }
308
309 [SymbolDispose]() {
310 if (this.#closed) return;

Callers 15

constructorMethod · 0.45
#isPathWatchedMethod · 0.45
[SymbolIterator]Method · 0.45
formatFunction · 0.45
mapEquivFunction · 0.45
mainFunction · 0.45
_parseArgsMethod · 0.45
recursiveMethod · 0.45
mainFunction · 0.45
findAllKeysFunction · 0.45
test-ffi-module.jsFile · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected