Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This change removes calls to console.* statements as requested in #124 (I couldn't get this code to attach to that issue...)
It does so by replacing statements that call
console
methods with an empty block to be removed later by the squeeze function.The caveat is that it only fully removes console function calls if they are executed as statements. If the calls are made elsewhere in the tree then they will just be replaced with 0. For example, the following boolean expression:
will be compressed to:
Also, the function arguments will be removed so users should be aware that if an argument is a function call, it won't be executed. For example, the
foo
function call will be totally removed in the following example:This can be executed from the commandline by adding the
--no-console
flag