diff options
author | Alex Lam S.L <alexlamsl@gmail.com> | 2017-07-15 23:50:27 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-07-15 23:50:27 +0800 |
commit | b35dfc2599ad84b21d278ca2c330e46b5e58c956 (patch) | |
tree | b8e797df2aad324cf32422dc7dd1fe7329e2ed5c /lib/propmangle.js | |
parent | 9e1da9235ea498760f45709848b76469f5b2a585 (diff) | |
download | tracifyjs-b35dfc2599ad84b21d278ca2c330e46b5e58c956.tar.gz tracifyjs-b35dfc2599ad84b21d278ca2c330e46b5e58c956.zip |
reject malformed CLI parameters (#2239)
fixes #2237
Diffstat (limited to 'lib/propmangle.js')
-rw-r--r-- | lib/propmangle.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/propmangle.js b/lib/propmangle.js index f17909d7..49490755 100644 --- a/lib/propmangle.js +++ b/lib/propmangle.js @@ -76,7 +76,7 @@ function mangle_properties(ast, options) { only_cache: false, regex: null, reserved: null, - }); + }, true); var reserved = options.reserved; if (!Array.isArray(reserved)) reserved = []; |