Skip to content

Commit

Permalink
Replaced concatenated strings with template literals in the config.js (
Browse files Browse the repository at this point in the history
  • Loading branch information
PSSGCSim authored and msimerson committed Sep 30, 2017
1 parent 2f2397c commit 37b893a
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions config.js
Original file line number Diff line number Diff line change
Expand Up @@ -121,11 +121,10 @@ Config.prototype.arrange_args = function (args) {
fs_type = args[i];
break;
}
console.log('unknown string:' + args[i]);
console.log(`unknown string: ${args[i]}`);
break;
}
// console.log('unknown arg:' + args[i] + ', typeof: ' +
// typeof args[i]);
// console.log(`unknown arg: ${args[i]}, typeof: ${typeof args[i]}`);
}

if (!fs_type) {
Expand Down

0 comments on commit 37b893a

Please sign in to comment.