mirror of
https://github.com/whoisclebs/lodash.git
synced 2026-02-02 16:17:50 +00:00
24 lines
456 B
JavaScript
24 lines
456 B
JavaScript
'use strict';
|
|
|
|
var util = require('./util'),
|
|
Hash = util.Hash;
|
|
|
|
/*----------------------------------------------------------------------------*/
|
|
|
|
module.exports = new Hash({
|
|
'compress': {
|
|
'pure_getters': true,
|
|
'unsafe': true,
|
|
'unsafe_comps': true,
|
|
'warnings': false
|
|
},
|
|
'mangle': {
|
|
'except': ['define']
|
|
},
|
|
'output': {
|
|
'ascii_only': true,
|
|
'comments': /^!|@cc_on|@license|@preserve/i,
|
|
'max_line_len': 500
|
|
}
|
|
});
|