Skip to content

Instantly share code, notes, and snippets.

@Constellation
Created September 4, 2015 23:37
Show Gist options
  • Save Constellation/48f35269dda4dd409785 to your computer and use it in GitHub Desktop.
Save Constellation/48f35269dda4dd409785 to your computer and use it in GitHub Desktop.
var args = arguments;
(function () {
var code = readFile(args[0]);
var ast = UglifyJS.parse(code);
ast.figure_out_scope();
var compressor = UglifyJS.Compressor({
});
ast = ast.transform(compressor);
var result = ast.print_to_string();
print(result);
}());
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment