├── .editorconfig ├── .flake8 ├── .gitattributes ├── .gitignore ├── CHANGES ├── LICENSE ├── MANIFEST.in ├── README.md ├── bench ├── DateTimeShortcuts.js ├── __init__.py ├── apiviewer.js ├── bootstrap.js ├── jquery-1.7.1.js ├── jsmin.c ├── jsmin.py ├── jsmin_2_0_9.py ├── knockout-2.0.0.js ├── main.py ├── markermanager.js ├── prepare.sh ├── report.pickle ├── report.sh ├── run.sh ├── tox.ini └── write.py ├── cext.h ├── compat-requirements.txt ├── debug.unix.cflags ├── development.txt ├── docs ├── BENCHMARKS ├── DESCRIPTION ├── DEVELOPMENT.md └── _userdoc │ ├── _static │ └── ci.css │ ├── benchmark.txt │ ├── conf.py │ ├── index.txt │ ├── website_download.txt │ └── website_download.txt.in ├── format_regex.py ├── gen_chartable.py ├── pylintrc ├── pyproject.toml ├── rjsmin.c ├── rjsmin.py ├── setup.py ├── tasks ├── __init__.py ├── _features.py ├── _inv │ ├── __init__.py │ ├── _default_settings.py │ ├── namespace.py │ ├── shell.py │ ├── tasks.py │ └── util.py ├── _settings.py ├── benchmark.py ├── build_ │ ├── __init__.py │ ├── _container.py │ ├── _dist.py │ ├── _pkg_dir.py │ ├── _release.py │ ├── _version.py │ ├── dist.py │ ├── source.py │ ├── wheel.sh │ └── wheels.py ├── check.py ├── clean.py ├── compile.py ├── deps │ ├── __init__.py │ ├── _inspect │ │ ├── __init__.py │ │ ├── _index.py │ │ ├── _inspect.py │ │ ├── _req_file.py │ │ └── _silence_warnings.py │ ├── _parse.py │ ├── _patch.py │ ├── _suggest │ │ ├── __init__.py │ │ ├── _dep_file.py │ │ ├── _file_model.py │ │ ├── _latest_file.py │ │ ├── _requirement.py │ │ └── _suggest.py │ ├── reset.sh │ └── tasks.py ├── doc │ ├── __init__.py │ ├── _sphinx.py │ └── tasks.py ├── format.py ├── inspect.py ├── pylintrc ├── pypi.py ├── test.py ├── upload.py └── util │ ├── __init__.py │ ├── git.py │ └── package.py └── tests ├── __init__.py ├── _util.py ├── coverage.txt ├── js ├── basic.bang.js ├── basic.js ├── basic.min.js ├── incomplete_bang_comment.js ├── incomplete_bang_comment.min.js ├── incomplete_bang_comment2.js ├── incomplete_bang_comment2.min.js ├── incomplete_comment.js ├── incomplete_comment.min.js ├── incomplete_comment2.js ├── incomplete_comment2.min.js ├── incomplete_regex.js ├── incomplete_regex.min.js ├── incomplete_regex2.js ├── incomplete_regex2.min.js ├── incomplete_string.js ├── incomplete_string.min.js ├── issue13.bang.js ├── issue13.js ├── issue13.min.js ├── issue8.bang.js ├── issue8.js ├── issue8.min.js ├── lone_slash.js └── lone_slash.min.js ├── requirements.txt ├── test_basic.py ├── test_ctype.py ├── test_incomplete.py ├── test_issue13.py ├── test_issue17.py └── test_issue8.py /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ndparker/rjsmin/HEAD/.editorconfig -------------------------------------------------------------------------------- /.flake8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ndparker/rjsmin/HEAD/.flake8 -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ndparker/rjsmin/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ndparker/rjsmin/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ndparker/rjsmin/HEAD/CHANGES -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ndparker/rjsmin/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ndparker/rjsmin/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ndparker/rjsmin/HEAD/README.md -------------------------------------------------------------------------------- /bench/DateTimeShortcuts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ndparker/rjsmin/HEAD/bench/DateTimeShortcuts.js -------------------------------------------------------------------------------- /bench/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ndparker/rjsmin/HEAD/bench/__init__.py -------------------------------------------------------------------------------- /bench/apiviewer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ndparker/rjsmin/HEAD/bench/apiviewer.js -------------------------------------------------------------------------------- /bench/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ndparker/rjsmin/HEAD/bench/bootstrap.js -------------------------------------------------------------------------------- /bench/jquery-1.7.1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ndparker/rjsmin/HEAD/bench/jquery-1.7.1.js -------------------------------------------------------------------------------- /bench/jsmin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ndparker/rjsmin/HEAD/bench/jsmin.c -------------------------------------------------------------------------------- /bench/jsmin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ndparker/rjsmin/HEAD/bench/jsmin.py -------------------------------------------------------------------------------- /bench/jsmin_2_0_9.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ndparker/rjsmin/HEAD/bench/jsmin_2_0_9.py -------------------------------------------------------------------------------- /bench/knockout-2.0.0.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ndparker/rjsmin/HEAD/bench/knockout-2.0.0.js -------------------------------------------------------------------------------- /bench/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ndparker/rjsmin/HEAD/bench/main.py -------------------------------------------------------------------------------- /bench/markermanager.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ndparker/rjsmin/HEAD/bench/markermanager.js -------------------------------------------------------------------------------- /bench/prepare.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ndparker/rjsmin/HEAD/bench/prepare.sh -------------------------------------------------------------------------------- /bench/report.pickle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ndparker/rjsmin/HEAD/bench/report.pickle -------------------------------------------------------------------------------- /bench/report.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ndparker/rjsmin/HEAD/bench/report.sh -------------------------------------------------------------------------------- /bench/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ndparker/rjsmin/HEAD/bench/run.sh -------------------------------------------------------------------------------- /bench/tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ndparker/rjsmin/HEAD/bench/tox.ini -------------------------------------------------------------------------------- /bench/write.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ndparker/rjsmin/HEAD/bench/write.py -------------------------------------------------------------------------------- /cext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ndparker/rjsmin/HEAD/cext.h -------------------------------------------------------------------------------- /compat-requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ndparker/rjsmin/HEAD/compat-requirements.txt -------------------------------------------------------------------------------- /debug.unix.cflags: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ndparker/rjsmin/HEAD/debug.unix.cflags -------------------------------------------------------------------------------- /development.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ndparker/rjsmin/HEAD/development.txt -------------------------------------------------------------------------------- /docs/BENCHMARKS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ndparker/rjsmin/HEAD/docs/BENCHMARKS -------------------------------------------------------------------------------- /docs/DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ndparker/rjsmin/HEAD/docs/DESCRIPTION -------------------------------------------------------------------------------- /docs/DEVELOPMENT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ndparker/rjsmin/HEAD/docs/DEVELOPMENT.md -------------------------------------------------------------------------------- /docs/_userdoc/_static/ci.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ndparker/rjsmin/HEAD/docs/_userdoc/_static/ci.css -------------------------------------------------------------------------------- /docs/_userdoc/benchmark.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ndparker/rjsmin/HEAD/docs/_userdoc/benchmark.txt -------------------------------------------------------------------------------- /docs/_userdoc/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ndparker/rjsmin/HEAD/docs/_userdoc/conf.py -------------------------------------------------------------------------------- /docs/_userdoc/index.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ndparker/rjsmin/HEAD/docs/_userdoc/index.txt -------------------------------------------------------------------------------- /docs/_userdoc/website_download.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ndparker/rjsmin/HEAD/docs/_userdoc/website_download.txt -------------------------------------------------------------------------------- /docs/_userdoc/website_download.txt.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ndparker/rjsmin/HEAD/docs/_userdoc/website_download.txt.in -------------------------------------------------------------------------------- /format_regex.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ndparker/rjsmin/HEAD/format_regex.py -------------------------------------------------------------------------------- /gen_chartable.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ndparker/rjsmin/HEAD/gen_chartable.py -------------------------------------------------------------------------------- /pylintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ndparker/rjsmin/HEAD/pylintrc -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ndparker/rjsmin/HEAD/pyproject.toml -------------------------------------------------------------------------------- /rjsmin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ndparker/rjsmin/HEAD/rjsmin.c -------------------------------------------------------------------------------- /rjsmin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ndparker/rjsmin/HEAD/rjsmin.py -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ndparker/rjsmin/HEAD/setup.py -------------------------------------------------------------------------------- /tasks/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ndparker/rjsmin/HEAD/tasks/__init__.py -------------------------------------------------------------------------------- /tasks/_features.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ndparker/rjsmin/HEAD/tasks/_features.py -------------------------------------------------------------------------------- /tasks/_inv/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ndparker/rjsmin/HEAD/tasks/_inv/__init__.py -------------------------------------------------------------------------------- /tasks/_inv/_default_settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ndparker/rjsmin/HEAD/tasks/_inv/_default_settings.py -------------------------------------------------------------------------------- /tasks/_inv/namespace.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ndparker/rjsmin/HEAD/tasks/_inv/namespace.py -------------------------------------------------------------------------------- /tasks/_inv/shell.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ndparker/rjsmin/HEAD/tasks/_inv/shell.py -------------------------------------------------------------------------------- /tasks/_inv/tasks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ndparker/rjsmin/HEAD/tasks/_inv/tasks.py -------------------------------------------------------------------------------- /tasks/_inv/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ndparker/rjsmin/HEAD/tasks/_inv/util.py -------------------------------------------------------------------------------- /tasks/_settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ndparker/rjsmin/HEAD/tasks/_settings.py -------------------------------------------------------------------------------- /tasks/benchmark.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ndparker/rjsmin/HEAD/tasks/benchmark.py -------------------------------------------------------------------------------- /tasks/build_/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ndparker/rjsmin/HEAD/tasks/build_/__init__.py -------------------------------------------------------------------------------- /tasks/build_/_container.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ndparker/rjsmin/HEAD/tasks/build_/_container.py -------------------------------------------------------------------------------- /tasks/build_/_dist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ndparker/rjsmin/HEAD/tasks/build_/_dist.py -------------------------------------------------------------------------------- /tasks/build_/_pkg_dir.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ndparker/rjsmin/HEAD/tasks/build_/_pkg_dir.py -------------------------------------------------------------------------------- /tasks/build_/_release.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ndparker/rjsmin/HEAD/tasks/build_/_release.py -------------------------------------------------------------------------------- /tasks/build_/_version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ndparker/rjsmin/HEAD/tasks/build_/_version.py -------------------------------------------------------------------------------- /tasks/build_/dist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ndparker/rjsmin/HEAD/tasks/build_/dist.py -------------------------------------------------------------------------------- /tasks/build_/source.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ndparker/rjsmin/HEAD/tasks/build_/source.py -------------------------------------------------------------------------------- /tasks/build_/wheel.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ndparker/rjsmin/HEAD/tasks/build_/wheel.sh -------------------------------------------------------------------------------- /tasks/build_/wheels.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ndparker/rjsmin/HEAD/tasks/build_/wheels.py -------------------------------------------------------------------------------- /tasks/check.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ndparker/rjsmin/HEAD/tasks/check.py -------------------------------------------------------------------------------- /tasks/clean.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ndparker/rjsmin/HEAD/tasks/clean.py -------------------------------------------------------------------------------- /tasks/compile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ndparker/rjsmin/HEAD/tasks/compile.py -------------------------------------------------------------------------------- /tasks/deps/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ndparker/rjsmin/HEAD/tasks/deps/__init__.py -------------------------------------------------------------------------------- /tasks/deps/_inspect/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ndparker/rjsmin/HEAD/tasks/deps/_inspect/__init__.py -------------------------------------------------------------------------------- /tasks/deps/_inspect/_index.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ndparker/rjsmin/HEAD/tasks/deps/_inspect/_index.py -------------------------------------------------------------------------------- /tasks/deps/_inspect/_inspect.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ndparker/rjsmin/HEAD/tasks/deps/_inspect/_inspect.py -------------------------------------------------------------------------------- /tasks/deps/_inspect/_req_file.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ndparker/rjsmin/HEAD/tasks/deps/_inspect/_req_file.py -------------------------------------------------------------------------------- /tasks/deps/_inspect/_silence_warnings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ndparker/rjsmin/HEAD/tasks/deps/_inspect/_silence_warnings.py -------------------------------------------------------------------------------- /tasks/deps/_parse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ndparker/rjsmin/HEAD/tasks/deps/_parse.py -------------------------------------------------------------------------------- /tasks/deps/_patch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ndparker/rjsmin/HEAD/tasks/deps/_patch.py -------------------------------------------------------------------------------- /tasks/deps/_suggest/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ndparker/rjsmin/HEAD/tasks/deps/_suggest/__init__.py -------------------------------------------------------------------------------- /tasks/deps/_suggest/_dep_file.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ndparker/rjsmin/HEAD/tasks/deps/_suggest/_dep_file.py -------------------------------------------------------------------------------- /tasks/deps/_suggest/_file_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ndparker/rjsmin/HEAD/tasks/deps/_suggest/_file_model.py -------------------------------------------------------------------------------- /tasks/deps/_suggest/_latest_file.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ndparker/rjsmin/HEAD/tasks/deps/_suggest/_latest_file.py -------------------------------------------------------------------------------- /tasks/deps/_suggest/_requirement.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ndparker/rjsmin/HEAD/tasks/deps/_suggest/_requirement.py -------------------------------------------------------------------------------- /tasks/deps/_suggest/_suggest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ndparker/rjsmin/HEAD/tasks/deps/_suggest/_suggest.py -------------------------------------------------------------------------------- /tasks/deps/reset.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ndparker/rjsmin/HEAD/tasks/deps/reset.sh -------------------------------------------------------------------------------- /tasks/deps/tasks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ndparker/rjsmin/HEAD/tasks/deps/tasks.py -------------------------------------------------------------------------------- /tasks/doc/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ndparker/rjsmin/HEAD/tasks/doc/__init__.py -------------------------------------------------------------------------------- /tasks/doc/_sphinx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ndparker/rjsmin/HEAD/tasks/doc/_sphinx.py -------------------------------------------------------------------------------- /tasks/doc/tasks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ndparker/rjsmin/HEAD/tasks/doc/tasks.py -------------------------------------------------------------------------------- /tasks/format.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ndparker/rjsmin/HEAD/tasks/format.py -------------------------------------------------------------------------------- /tasks/inspect.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ndparker/rjsmin/HEAD/tasks/inspect.py -------------------------------------------------------------------------------- /tasks/pylintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ndparker/rjsmin/HEAD/tasks/pylintrc -------------------------------------------------------------------------------- /tasks/pypi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ndparker/rjsmin/HEAD/tasks/pypi.py -------------------------------------------------------------------------------- /tasks/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ndparker/rjsmin/HEAD/tasks/test.py -------------------------------------------------------------------------------- /tasks/upload.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ndparker/rjsmin/HEAD/tasks/upload.py -------------------------------------------------------------------------------- /tasks/util/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ndparker/rjsmin/HEAD/tasks/util/__init__.py -------------------------------------------------------------------------------- /tasks/util/git.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ndparker/rjsmin/HEAD/tasks/util/git.py -------------------------------------------------------------------------------- /tasks/util/package.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ndparker/rjsmin/HEAD/tasks/util/package.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ndparker/rjsmin/HEAD/tests/__init__.py -------------------------------------------------------------------------------- /tests/_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ndparker/rjsmin/HEAD/tests/_util.py -------------------------------------------------------------------------------- /tests/coverage.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ndparker/rjsmin/HEAD/tests/coverage.txt -------------------------------------------------------------------------------- /tests/js/basic.bang.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ndparker/rjsmin/HEAD/tests/js/basic.bang.js -------------------------------------------------------------------------------- /tests/js/basic.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ndparker/rjsmin/HEAD/tests/js/basic.js -------------------------------------------------------------------------------- /tests/js/basic.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ndparker/rjsmin/HEAD/tests/js/basic.min.js -------------------------------------------------------------------------------- /tests/js/incomplete_bang_comment.js: -------------------------------------------------------------------------------- 1 | foo /*! huh. 2 | -------------------------------------------------------------------------------- /tests/js/incomplete_bang_comment.min.js: -------------------------------------------------------------------------------- 1 | foo/*!huh. -------------------------------------------------------------------------------- /tests/js/incomplete_bang_comment2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ndparker/rjsmin/HEAD/tests/js/incomplete_bang_comment2.js -------------------------------------------------------------------------------- /tests/js/incomplete_bang_comment2.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ndparker/rjsmin/HEAD/tests/js/incomplete_bang_comment2.min.js -------------------------------------------------------------------------------- /tests/js/incomplete_comment.js: -------------------------------------------------------------------------------- 1 | foo /* huh. 2 | -------------------------------------------------------------------------------- /tests/js/incomplete_comment.min.js: -------------------------------------------------------------------------------- 1 | foo/*huh. -------------------------------------------------------------------------------- /tests/js/incomplete_comment2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ndparker/rjsmin/HEAD/tests/js/incomplete_comment2.js -------------------------------------------------------------------------------- /tests/js/incomplete_comment2.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ndparker/rjsmin/HEAD/tests/js/incomplete_comment2.min.js -------------------------------------------------------------------------------- /tests/js/incomplete_regex.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ndparker/rjsmin/HEAD/tests/js/incomplete_regex.js -------------------------------------------------------------------------------- /tests/js/incomplete_regex.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ndparker/rjsmin/HEAD/tests/js/incomplete_regex.min.js -------------------------------------------------------------------------------- /tests/js/incomplete_regex2.js: -------------------------------------------------------------------------------- 1 | var x= /lal + ala[la/ 2 | 3 | !Ha 4 | -------------------------------------------------------------------------------- /tests/js/incomplete_regex2.min.js: -------------------------------------------------------------------------------- 1 | var x=/lal+ala[la/!Ha -------------------------------------------------------------------------------- /tests/js/incomplete_string.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ndparker/rjsmin/HEAD/tests/js/incomplete_string.js -------------------------------------------------------------------------------- /tests/js/incomplete_string.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ndparker/rjsmin/HEAD/tests/js/incomplete_string.min.js -------------------------------------------------------------------------------- /tests/js/issue13.bang.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ndparker/rjsmin/HEAD/tests/js/issue13.bang.js -------------------------------------------------------------------------------- /tests/js/issue13.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ndparker/rjsmin/HEAD/tests/js/issue13.js -------------------------------------------------------------------------------- /tests/js/issue13.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ndparker/rjsmin/HEAD/tests/js/issue13.min.js -------------------------------------------------------------------------------- /tests/js/issue8.bang.js: -------------------------------------------------------------------------------- 1 | if(1)console.log(` space {kla;gk;skgld} 2 | x 3 | moar. 4 | `) -------------------------------------------------------------------------------- /tests/js/issue8.js: -------------------------------------------------------------------------------- 1 | if (1) console.log(` space {kla;gk;skgld} 2 | x 3 | moar. 4 | `) 5 | -------------------------------------------------------------------------------- /tests/js/issue8.min.js: -------------------------------------------------------------------------------- 1 | if(1)console.log(` space {kla;gk;skgld} 2 | x 3 | moar. 4 | `) -------------------------------------------------------------------------------- /tests/js/lone_slash.js: -------------------------------------------------------------------------------- 1 | foo =~ / 2 | -------------------------------------------------------------------------------- /tests/js/lone_slash.min.js: -------------------------------------------------------------------------------- 1 | foo=~/ -------------------------------------------------------------------------------- /tests/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ndparker/rjsmin/HEAD/tests/requirements.txt -------------------------------------------------------------------------------- /tests/test_basic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ndparker/rjsmin/HEAD/tests/test_basic.py -------------------------------------------------------------------------------- /tests/test_ctype.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ndparker/rjsmin/HEAD/tests/test_ctype.py -------------------------------------------------------------------------------- /tests/test_incomplete.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ndparker/rjsmin/HEAD/tests/test_incomplete.py -------------------------------------------------------------------------------- /tests/test_issue13.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ndparker/rjsmin/HEAD/tests/test_issue13.py -------------------------------------------------------------------------------- /tests/test_issue17.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ndparker/rjsmin/HEAD/tests/test_issue17.py -------------------------------------------------------------------------------- /tests/test_issue8.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ndparker/rjsmin/HEAD/tests/test_issue8.py --------------------------------------------------------------------------------