Add Hash util and split out file helper.

This commit is contained in:
John-David Dalton
2016-04-06 23:22:22 -07:00
parent 58afd8c364
commit 0588dcb3e9
9 changed files with 94 additions and 50 deletions

View File

@@ -1,4 +1,11 @@
module.exports = {
'use strict';
var util = require('./util'),
Hash = util.Hash;
/*----------------------------------------------------------------------------*/
module.exports = new Hash({
'compress': {
'pure_getters': true,
'unsafe': true,
@@ -13,4 +20,4 @@ module.exports = {
'comments': /^!|@cc_on|@license|@preserve/i,
'max_line_len': 500
}
};
});