nexus site path corrected
[portal.git] / ecomp-portal-FE / client / bower_components / lodash / lib / common / uglify.options.js
1 'use strict';
2
3 /**
4  * The UglifyJS options object for
5  * [compress](https://github.com/mishoo/UglifyJS2#compressor-options),
6  * [mangle](https://github.com/mishoo/UglifyJS2#mangler-options), and
7  * [output](https://github.com/mishoo/UglifyJS2#beautifier-options) options.
8  */
9 module.exports = {
10   'compress': {
11     'pure_getters': true,
12     'unsafe': true,
13     'warnings': false
14   },
15   'mangle': {
16     'except': ['define']
17   },
18   'output': {
19     'ascii_only': true,
20     'comments': /^!|@cc_on|@license|@preserve/i,
21     'max_line_len': 500
22   }
23 };