__init__.py 196 Bytes
Newer Older
1 2 3 4 5 6 7
from pipeline.compressors import CompressorBase
from pipeline.compressors.jsmin.jsmin import jsmin


class JSMinCompressor(CompressorBase):
    def compress_js(self, js):
        return jsmin(js)