From a3aba5173c3ded5a42edc2aa7fd7e614d6fa5448 Mon Sep 17 00:00:00 2001 From: kzc Date: Sat, 25 Nov 2017 02:46:38 -0500 Subject: [PATCH] move keep_classnames description --- README.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 598cad4b..2541e2f9 100644 --- a/README.md +++ b/README.md @@ -672,14 +672,14 @@ If you're using the `X-SourceMap` header instead, you can just omit `sourceMap.u - `join_vars` (default: `true`) -- join consecutive `var` statements +- `keep_classnames` (default: `false`) -- Pass `true` to prevent the + compressor from discarding class names. See also: the `keep_classnames` + [mangle option](#mangle). + - `keep_fargs` (default: `true`) -- default `true`. Prevents the compressor from discarding unused function arguments. You need this for code which relies on `Function.length`. -- `keep_classnames` (default: `false`) -- Pass `true` to prevent the - compressor from discarding class names. See also: the `keep_classnames` - [mangle option](#mangle). - - `keep_fnames` (default: `false`) -- Pass `true` to prevent the compressor from discarding function names. Useful for code relying on `Function.prototype.name`. See also: the `keep_fnames` [mangle option](#mangle).