better document mangle properties options (#2009)
authorkzc <kzc@users.noreply.github.com>
Fri, 26 May 2017 18:28:43 +0000 (14:28 -0400)
committerAlex Lam S.L <alexlamsl@gmail.com>
Fri, 26 May 2017 18:28:43 +0000 (02:28 +0800)
README.md

index d147e61..9db3e6c 100644 (file)
--- 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