This brings this codebase up to speed with current JS standards. - Moved tests to an updated version in test/feature_extractor.js (based on test/compress.js, which in turn was evolved from test/run-tests.js) - Update test/feature_extractor/*.js files to use valid JS syntax ( multiline strings in JS template strings) - Drop use of deprecated sys methods (using console instead). Upstream changes supporting the development process (.github/ and CONTRIBUTING.md) were not included in this merge.
19 lines
684 B
JavaScript
19 lines
684 B
JavaScript
exports["Compressor"] = Compressor;
|
|
exports["defaults"] = defaults;
|
|
exports["is_statement"] = is_statement;
|
|
exports["JS_Parse_Error"] = JS_Parse_Error;
|
|
exports["List"] = List;
|
|
exports["mangle_properties"] = mangle_properties;
|
|
exports["minify"] = minify;
|
|
exports["OutputStream"] = OutputStream;
|
|
exports["parse"] = parse;
|
|
exports["push_uniq"] = push_uniq;
|
|
exports["reserve_quoted_keys"] = reserve_quoted_keys;
|
|
exports["string_template"] = string_template;
|
|
exports["to_ascii"] = to_ascii;
|
|
exports["tokenizer"] = tokenizer;
|
|
exports["TreeTransformer"] = TreeTransformer;
|
|
exports["TreeWalker"] = TreeWalker;
|
|
exports["vlq_decode"] = vlq_decode;
|
|
exports["extractFeatures"] = extractFeatures;
|