From: kzc Date: Fri, 26 May 2017 18:28:43 +0000 (-0400) Subject: better document mangle properties options (#2009) X-Git-Url: https://git.ndcode.org/public/gitweb.cgi?a=commitdiff_plain;h=78309a293d88e4ac59477af71a3cff4766f94371;p=UglifyJS.git better document mangle properties options (#2009) --- diff --git a/README.md b/README.md index d147e619..9db3e6c7 100644 --- a/README.md +++ b/README.md @@ -712,10 +712,15 @@ UglifyJS.minify(code, { mangle: { toplevel: true } }).code; ### Mangle properties options -- `regex` — Pass a RegExp to only mangle certain names -- `keep_quoted` — Only mangle unquoted property names -- `debug` — Mangle names with the original name still present. Defaults to `false`. - Pass an empty string to enable, or a non-empty string to set the suffix. +- `reserved` (default: `[]`) -- Do not mangle property names listed in the + `reserved` array. +- `regex` (default: `null`) -— Pass a RegExp literal to only mangle property + names matching the regular expression. +- `keep_quoted` (default: `false`) -— Only mangle unquoted property names. +- `debug` (default: `false`) -— Mangle names with the original name still present. + Pass an empty string `""` to enable, or a non-empty string to set the debug suffix. +- `builtins` (default: `false`) -- Use `true` to allow the mangling of builtin + DOM properties. Not recommended to override this setting. ## Output options