gitextract_sjeuf_wc/ ├── .codeclimate.yml ├── .gitattributes ├── .github/ │ ├── ISSUE_TEMPLATE/ │ │ ├── beautification-problem.md │ │ ├── feature_request.md │ │ └── question-about-usage.md │ ├── PULL_REQUEST_TEMPLATE.md │ ├── dependabot.yml │ └── workflows/ │ ├── codeql-analysis.yml │ ├── main.yml │ ├── milestone-publish.yml │ ├── pr-staging.yml │ └── ssh_config.txt ├── .gitignore ├── .jshintignore ├── .jshintrc ├── .npmignore ├── .pylintrc ├── CHANGELOG.md ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── Makefile ├── README.md ├── bower.json ├── index.html ├── js/ │ ├── bin/ │ │ ├── css-beautify.js │ │ ├── html-beautify.js │ │ └── js-beautify.js │ ├── config/ │ │ └── defaults.json │ ├── index.js │ ├── src/ │ │ ├── cli.js │ │ ├── core/ │ │ │ ├── directives.js │ │ │ ├── inputscanner.js │ │ │ ├── options.js │ │ │ ├── output.js │ │ │ ├── pattern.js │ │ │ ├── templatablepattern.js │ │ │ ├── token.js │ │ │ ├── tokenizer.js │ │ │ ├── tokenstream.js │ │ │ └── whitespacepattern.js │ │ ├── css/ │ │ │ ├── beautifier.js │ │ │ ├── index.js │ │ │ ├── options.js │ │ │ └── tokenizer.js │ │ ├── html/ │ │ │ ├── beautifier.js │ │ │ ├── index.js │ │ │ ├── options.js │ │ │ └── tokenizer.js │ │ ├── index.js │ │ ├── javascript/ │ │ │ ├── acorn.js │ │ │ ├── beautifier.js │ │ │ ├── index.js │ │ │ ├── options.js │ │ │ └── tokenizer.js │ │ └── unpackers/ │ │ ├── javascriptobfuscator_unpacker.js │ │ ├── myobfuscate_unpacker.js │ │ ├── p_a_c_k_e_r_unpacker.js │ │ └── urlencode_unpacker.js │ └── test/ │ ├── amd-beautify-tests.js │ ├── core/ │ │ ├── test_inputscanner.js │ │ └── test_options.js │ ├── node-beautify-css-perf-tests.js │ ├── node-beautify-html-perf-tests.js │ ├── node-beautify-perf-tests.js │ ├── node-beautify-tests.js │ ├── node-src-index-tests.js │ ├── resources/ │ │ ├── configerror/ │ │ │ ├── .jsbeautifyrc │ │ │ └── subDir1/ │ │ │ └── subDir2/ │ │ │ └── empty.txt │ │ ├── editorconfig/ │ │ │ ├── .editorconfig │ │ │ ├── cr/ │ │ │ │ └── .editorconfig │ │ │ ├── crlf/ │ │ │ │ └── .editorconfig │ │ │ ├── error/ │ │ │ │ └── .editorconfig │ │ │ └── example-base.js │ │ ├── example1.js │ │ └── indent11chars/ │ │ ├── .jsbeautifyrc │ │ └── subDir1/ │ │ └── subDir2/ │ │ └── empty.txt │ ├── run-tests │ ├── sanitytest.js │ └── shell-test.sh ├── jsbeautifyrc ├── package.json ├── python/ │ ├── MANIFEST.in │ ├── __init__.py │ ├── css-beautify │ ├── cssbeautifier/ │ │ ├── __init__.py │ │ ├── __version__.py │ │ ├── _main.py │ │ ├── css/ │ │ │ ├── __init__.py │ │ │ ├── beautifier.py │ │ │ └── options.py │ │ └── tests/ │ │ └── __init__.py │ ├── debian/ │ │ ├── .gitignore │ │ ├── changelog │ │ ├── compat │ │ ├── control │ │ ├── rules │ │ └── source/ │ │ └── format │ ├── js-beautify-profile │ ├── js-beautify-test │ ├── js-beautify-test.py │ ├── jsbeautifier/ │ │ ├── __init__.py │ │ ├── __version__.py │ │ ├── cli/ │ │ │ └── __init__.py │ │ ├── core/ │ │ │ ├── __init__.py │ │ │ ├── directives.py │ │ │ ├── inputscanner.py │ │ │ ├── options.py │ │ │ ├── output.py │ │ │ ├── pattern.py │ │ │ ├── templatablepattern.py │ │ │ ├── token.py │ │ │ ├── tokenizer.py │ │ │ ├── tokenstream.py │ │ │ └── whitespacepattern.py │ │ ├── javascript/ │ │ │ ├── __init__.py │ │ │ ├── acorn.py │ │ │ ├── beautifier.py │ │ │ ├── options.py │ │ │ └── tokenizer.py │ │ ├── tests/ │ │ │ ├── __init__.py │ │ │ ├── core/ │ │ │ │ ├── __init__.py │ │ │ │ ├── test_inputscanner.py │ │ │ │ └── test_options.py │ │ │ ├── shell-test.sh │ │ │ └── testindentation.py │ │ └── unpackers/ │ │ ├── README.specs.mkd │ │ ├── __init__.py │ │ ├── evalbased.py │ │ ├── javascriptobfuscator.py │ │ ├── myobfuscate.py │ │ ├── packer.py │ │ ├── tests/ │ │ │ ├── __init__.py │ │ │ ├── test-myobfuscate-input.js │ │ │ ├── test-myobfuscate-output.js │ │ │ ├── test-packer-62-input.js │ │ │ ├── test-packer-non62-input.js │ │ │ ├── testjavascriptobfuscator.py │ │ │ ├── testmyobfuscate.py │ │ │ ├── testpacker.py │ │ │ └── testurlencode.py │ │ └── urlencode.py │ ├── pyproject.toml │ ├── setup-css.py │ ├── setup-js.py │ ├── test-perf-cssbeautifier.py │ └── test-perf-jsbeautifier.py ├── test/ │ ├── data/ │ │ ├── css/ │ │ │ ├── node.mustache │ │ │ ├── python.mustache │ │ │ └── tests.js │ │ ├── html/ │ │ │ ├── node.mustache │ │ │ └── tests.js │ │ └── javascript/ │ │ ├── inputlib.js │ │ ├── node.mustache │ │ ├── python.mustache │ │ └── tests.js │ ├── generate-tests.js │ └── resources/ │ ├── github-min.js │ ├── github.css │ ├── github.html │ ├── html-with-base64image.html │ ├── underscore-min.js │ ├── underscore.js │ └── unicode-error.js ├── tools/ │ ├── build.sh │ ├── generate-changelog.sh │ ├── git-status-clear.sh │ ├── node │ ├── npm │ ├── python │ ├── python-dev │ ├── python-dev3 │ ├── python-rel │ ├── release-all.sh │ └── template/ │ ├── beautify-css.wrapper.js │ ├── beautify-html.wrapper.js │ └── beautify.wrapper.js ├── web/ │ ├── common-function.js │ ├── common-style.css │ ├── google-analytics.js │ └── onload.js └── webpack.config.js