Last active
November 28, 2024 00:44
-
-
Save threepointone/9947e91887063b67155aa7bc06990342 to your computer and use it in GitHub Desktop.
converted a function to a generator; simpler, more efficient, cooler.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// recursively get all files in a folder | |
function* getAllFiles(dirPath: string): Iterable<string> { | |
for (const file of fs.readdirSync(dirPath)) { | |
const pathToCheck = path.join(dirPath, file); | |
if (fs.statSync(pathToCheck).isDirectory()) { | |
if (file !== 'node_modules') { | |
yield* getAllFiles(pathToCheck); | |
} | |
} else { | |
yield pathToCheck; | |
} | |
} | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// recursively get all files in a folder | |
function getAllFiles(dirPath: string, arrayOfFiles: string[] = []) { | |
const files = fs.readdirSync(dirPath); | |
files.forEach(function (file) { | |
const pathToCheck = path.join(dirPath, file); | |
if (fs.statSync(pathToCheck).isDirectory()) { | |
if (file !== 'node_modules') { | |
arrayOfFiles = getAllFiles(pathToCheck, arrayOfFiles); | |
} | |
} else { | |
arrayOfFiles.push(pathToCheck); | |
} | |
}); | |
return arrayOfFiles; | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// recursively get all files in a folder | |
-function getAllFiles(dirPath: string, arrayOfFiles: string[] = []) { | |
- const files = fs.readdirSync(dirPath); | |
- | |
- files.forEach(function (file) { | |
+function* getAllFiles(dirPath: string): Iterable<string> { | |
+ for (const file of fs.readdirSync(dirPath)) { | |
const pathToCheck = path.join(dirPath, file); | |
if (fs.statSync(pathToCheck).isDirectory()) { | |
if (file !== 'node_modules') { | |
- arrayOfFiles = getAllFiles(pathToCheck, arrayOfFiles); | |
+ yield* getAllFiles(pathToCheck); | |
} | |
} else { | |
- arrayOfFiles.push(pathToCheck); | |
+ yield pathToCheck; | |
} | |
- }); | |
- | |
- return arrayOfFiles; | |
+ } | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment