sort options in alphabetical order (#1743)

They started off as functional groups I guess, but given the sheer number of options this is becoming too difficult to read.
This commit is contained in:
Alex Lam S.L
2017-03-31 16:41:04 +08:00
committed by GitHub
parent f8a71b56fd
commit a0c3836ba0
6 changed files with 72 additions and 72 deletions

View File

@@ -62,12 +62,12 @@ function find_builtins() {
function mangle_properties(ast, options) {
options = defaults(options, {
reserved : null,
cache : null,
only_cache : false,
regex : null,
ignore_quoted : false,
debug : false
cache: null,
debug: false,
ignore_quoted: false,
only_cache: false,
regex: null,
reserved: null,
});
var reserved = options.reserved;