We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 93f68c8 commit 07e6720Copy full SHA for 07e6720
lib/compress.js
@@ -1,4 +1,3 @@
1
-
2
/**
3
* Module dependencies.
4
*/
@@ -144,6 +143,17 @@ Compiler.prototype.page = function(node){
144
143
+ this.emit('}');
145
};
146
+/**
147
+ * Visit font-face node.
148
+ */
149
+
150
+Compiler.prototype.fontface = function(node){
151
+ return this.emit('@font-face ')
152
+ + this.emit('{')
153
+ + this.mapVisit(node.declarations)
154
+ + this.emit('}');
155
+};
156
157
158
* Visit rule node.
159
0 commit comments