MCPcopy Create free account
hub / github.com/neetcode-gh/leetcode / nestedFiles

Function nestedFiles

updateCompletionTable.js:61–67  ·  view source on GitHub ↗
(dir)

Source from the content-addressed store, hash-verified

59}
60
61function nestedFiles(dir) {
62 files = [];
63 for (const filePath of walkSync(dir)) {
64 files.push(filePath);
65 }
66 return files;
67}
68
69const directories = getDirectories(PREPEND_PATH).filter(
70 (dir) => !IGNORE_DIRS.includes(dir),

Callers 1

Calls 2

walkSyncFunction · 0.85
pushMethod · 0.45

Tested by

no test coverage detected