(root)
| 921 | } |
| 922 | |
| 923 | function* walkFiles(root) { |
| 924 | for (const entry of fs.readdirSync(root, { withFileTypes: true })) { |
| 925 | const fullPath = path.join(root, entry.name); |
| 926 | if (entry.isDirectory()) { |
| 927 | yield* walkFiles(fullPath); |
| 928 | } else if (entry.isFile()) { |
| 929 | yield fullPath; |
| 930 | } |
| 931 | } |
| 932 | } |
| 933 | |
| 934 | function pushSearchArgs(args, flag, values) { |
| 935 | for (const value of values) { |
no outgoing calls
no test coverage detected