WebMarkupMin.NUglify.NUglifyJsMinificationSettings.NUglifyJsMinificationSettings C# (CSharp) Méthode

NUglifyJsMinificationSettings() public méthode

Constructs an instance of the NUglify JS Minifier settings
        public NUglifyJsMinificationSettings()
        {
            AlwaysEscapeNonAscii = false;
            AmdSupport = false;
            CollapseToLiteral = true;
            ConstStatementsMozilla = false;
            DebugLookupList = "Debug,$Debug,WAssert,Msn.Debug,Web.Debug";
            ErrorIfNotInlineSafe = false;
            EvalLiteralExpressions = true;
            EvalTreatment = EvalTreatment.Ignore;
            IgnoreConditionalCompilation = false;
            IgnorePreprocessorDefines = false;
            InlineSafeStrings = true;
            KnownGlobalNamesList = string.Empty;
            LocalRenaming = LocalRenaming.CrunchAll;
            MacSafariQuirks = true;
            ManualRenamesProperties = true;
            NoAutoRenameList = "$super";
            PreserveFunctionNames = false;
            PreserveImportantComments = true;
            QuoteObjectLiteralProperties = false;
            RemoveFunctionExpressionNames = true;
            RemoveUnneededCode = true;
            RenamePairs = string.Empty;
            ReorderScopeDeclarations = true;
            StrictMode = false;
            StripDebugStatements = true;
        }
NUglifyJsMinificationSettings