Refactor code

pull/3136/head
joassouza 2017-02-07 15:06:49 -02:00
parent d1e6c8492d
commit 0025613ba6
1 changed files with 9 additions and 3 deletions

View File

@ -375,9 +375,7 @@ function getFileCompressed(filename, contentType, callback) {
callback(error, content);
} else if (contentType == 'text/javascript') {
try {
var decoder = new StringDecoder('utf8');
var code = decoder.write(content); // convert from buffer to string
content = uglifyJS.minify(code, {fromString: true}).code;
content = compressJS(content);
} catch (error) {
// silence
}
@ -400,6 +398,14 @@ function getFile(filename, callback) {
}
}
function compressJS(content)
{
var decoder = new StringDecoder('utf8');
var code = decoder.write(content); // convert from buffer to string
var codeMinified = uglifyJS.minify(code, {fromString: true}).code;
return codeMinified;
}
function compressCSS(filename, content, callback)
{
try {