diff --git a/commands/parseLogFile.js b/commands/parseLogFile.js index 1b6a375..8ebf194 100644 --- a/commands/parseLogFile.js +++ b/commands/parseLogFile.js @@ -15,11 +15,6 @@ function getLogLines(LogFile) { return fileLines; } -function checkDirectory(path) { - const stats = fs.statSync(path); - return stats.isDirectory(); -} - function saveParsedFile(filePath, data) { const outputString = JSON.stringify(data); fs.writeFileSync(filePath, outputString);