Bug 1105052 - Update in-tree jsmin to commit a878bf0. rs=gps

This is a straight copy from

a878bf0ba0

paired with a tiny change to use the new quote_chars option.
This commit is contained in:
Nick Alexander
2014-11-25 16:02:08 -08:00
parent 5d011fb9fd
commit 199eb0fa27
4 changed files with 68 additions and 21 deletions

View File

@@ -609,7 +609,7 @@ class MinifiedJavaScript(BaseFile):
def open(self):
output = BytesIO()
minify = JavascriptMinify(self._file.open(), output)
minify = JavascriptMinify(self._file.open(), output, quote_chars="'\"`")
minify.minify()
output.seek(0)