remove ascii_identifiers

This commit is contained in:
alexlamsl
2017-07-23 12:54:50 +08:00
parent 77d18be073
commit 29011ea60a
2 changed files with 0 additions and 20 deletions

View File

@@ -54,7 +54,6 @@ function OutputStream(options) {
options = defaults(options, {
ascii_only : false,
ascii_identifiers: undefined,
beautify : false,
bracketize : false,
comments : false,
@@ -78,9 +77,6 @@ function OutputStream(options) {
wrap_iife : false,
}, true);
if (typeof options.ascii_identifiers === 'undefined')
options.ascii_identifiers = options.ascii_only;
if (options.shorthand === undefined)
options.shorthand = options.ecma > 5;