Skip to content

Commit

Permalink
Remove unused foo param
Browse files Browse the repository at this point in the history
  • Loading branch information
bradymholt authored Oct 25, 2023
1 parent 4a962bd commit 7197adc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -832,7 +832,7 @@ global.rmdir = _rm;
* @param recursive Whether files from child directories should be included. Defaults to true.
* @returns
*/
const _readdir = (path: string, recursive: boolean = true, foo: boolean = true) => {
const _readdir = (path: string, recursive: boolean = true) => {
const files = [];
for (const file of fs.readdirSync(path)) {
const fullPath = path + "/" + file;
Expand Down

0 comments on commit 7197adc

Please sign in to comment.