===========================================================
                                      .___ __  __   
          _________________  __ __  __| _/|__|/  |_ 
         / ___\_` __ \__  \ |  |  \/ __ | | \\_  __\
        / /_/  >  | \// __ \|  |  / /_/ | |  ||  |  
        \___  /|__|  (____  /____/\____ | |__||__|  
       /_____/            \/           \/           
              grep rough audit - static analysis tool
                  v2.8 written by @Wireghoul
=================================[justanotherhacker.com]===
uglifyjs-2.8.29/README.md-306-without completely obscuring them. For example the property `o.foo`
uglifyjs-2.8.29/README.md:307:would mangle to `o._$foo$_` with this option. This allows property mangling
uglifyjs-2.8.29/README.md-308-of a large codebase while still being able to debug the code and identify
##############################################
uglifyjs-2.8.29/README.md-311-You can also pass a custom suffix using `--mangle-props-debug=XYZ`. This would then
uglifyjs-2.8.29/README.md:312:mangle `o.foo` to `o._$foo$XYZ_`. You can change this each time you compile a
uglifyjs-2.8.29/README.md-313-script to identify how a property got mangled. One technique is to pass a
##############################################
uglifyjs-2.8.29/lib/output.js-449-
uglifyjs-2.8.29/lib/output.js:450:    var use_asm = false;
uglifyjs-2.8.29/lib/output.js-451-    var in_directive = false;
##############################################
uglifyjs-2.8.29/lib/output.js-453-    AST_Node.DEFMETHOD("print", function(stream, force_parens){
uglifyjs-2.8.29/lib/output.js:454:        var self = this, generator = self._codegen, prev_use_asm = use_asm;
uglifyjs-2.8.29/lib/output.js-455-        if (self instanceof AST_Directive && self.value == "use asm" && stream.parent() instanceof AST_Scope) {
uglifyjs-2.8.29/lib/output.js:456:            use_asm = true;
uglifyjs-2.8.29/lib/output.js-457-        }
##############################################
uglifyjs-2.8.29/lib/output.js-470-        if (self instanceof AST_Scope) {
uglifyjs-2.8.29/lib/output.js:471:            use_asm = prev_use_asm;
uglifyjs-2.8.29/lib/output.js-472-        }
##############################################
uglifyjs-2.8.29/lib/output.js-1261-    DEFPRINT(AST_Number, function(self, output){
uglifyjs-2.8.29/lib/output.js:1262:        if (use_asm && self.start && self.start.raw != null) {
uglifyjs-2.8.29/lib/output.js-1263-            output.print(self.start.raw);