console-log-remover README
Easily remove the most complex console.log() statements from your code.
How to use
Cmd + Shift + P -> Console Log Remover
or
Alt + C
Features
- Single-line comment console.log(): This is the case when we comment out a console.log(), like so:
//console.log("foo");
- Single-line console.log() with single quotes:
console.log("boo");
- Single-line console.log() with multiple arguments:
console.log("firstName", firstName);
- Multiline console.log() statement:
console.log(
"hello",
foo(),
"world",
bar(),
testVar,
"testType",
callbackFN(),
"desc",
desc
);
- Nested parentheses:
console.log("user", getUser(), "name", getName());
0.0.1
Initial release of Console Log Remover
Repository
https://github.com/kurucaner/console-log-remover
Enjoy!