Skip to content

Commit 8fd8e75

Browse files
committed
convert all identation to tabs
1 parent 28e15c0 commit 8fd8e75

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

test-app/build-tools/jsparser/js_parser.js

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
///////////////// CONFIGURATION /////////////////
77

88
const enableLogger = (process.env.AST_PARSER_ENABLE_LOGGING && process.env.AST_PARSER_ENABLE_LOGGING.trim() === "true")
9-
|| (process.argv && process.argv.includes("enableVerboseLogging"));
9+
|| (process.argv && process.argv.includes("enableVerboseLogging"));
1010

1111
loggingSettings = {
1212
"logPath": require("path").join(__dirname, "logs", "i.txt"),
@@ -161,8 +161,8 @@ function traverseFiles(filesToTraverse) {
161161
readFile(fp)
162162
.then(astFromFileContent)
163163
.then(visitAst)
164-
.then(writeToFile)
165-
.catch(exceptionHandler)
164+
.then(writeToFile)
165+
.catch(exceptionHandler)
166166
}
167167
}
168168

@@ -247,7 +247,7 @@ var visitAst = function (data, err) {
247247

248248
var writeToFile = function (data, err) {
249249
return new Promise(function (resolve, reject) {
250-
if (data.trim() != "") {
250+
if (data.trim() != "") {
251251
// fs.appendFile(outFile, stringify(data), function (writeFileError) {
252252
fs.appendFile(outFile, data + eol, function (writeFileError) {
253253
if (err) {

0 commit comments

Comments
 (0)