master
Christopher Chedeau 2017-05-27 13:32:53 -07:00
parent 375540efac
commit 122bb65f16
1 changed files with 2 additions and 2 deletions

View File

@ -2522,7 +2522,7 @@ function genericPrintNoParens(path, options, print, args) {
}
case "css-decl": {
return concat([
n.raws.before.replace(/[\s;]/g, ''),
n.raws.before.replace(/[\s;]/g, ""),
n.prop,
": ",
path.call(print, "value"),
@ -2568,7 +2568,7 @@ function genericPrintNoParens(path, options, print, args) {
return concat(["(", concat(path.map(print, "nodes")), ")"]);
}
case "media-feature": {
return n.value.replace(/ +/g, ' ');
return n.value.replace(/ +/g, " ");
}
case "media-colon": {
return concat([n.value, " "]);