41424344454647484950
return ResourceType.JAVASCRIPT; } public void compress(Reader input, Writer output) throws ResourceCompressorException { try { new JSMin(input, output).jsmin(); } catch (Exception ex) { throw new ResourceCompressorException(ex); } }
4748495051525354555657
public void compress(Reader input, Writer output) throws ResourceCompressorException { try { new JSMin(input, output).jsmin(); } catch (Exception ex) { throw new ResourceCompressorException(ex); }