remove outdated comment

This commit is contained in:
DetachHead
2020-12-27 16:01:02 +10:00
parent 10d648c28d
commit 9352569852

View File

@@ -187,7 +187,6 @@ async function getInputFiles(paths) {
const validFiles = [];
for (const path of paths) {
//allow paths ending in / of \ to get all files in that directory
const files = (await fsp.lstat(path)).isDirectory()
? (await fsp.readdir(path)).map(file => join(path, file))
: [path];