File tree Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -83,7 +83,7 @@ module.exports = function(css){
83
83
var comment = css . slice ( 2 , i - 2 ) ;
84
84
css = css . slice ( i ) ;
85
85
whitespace ( ) ;
86
- return { comment : comment } ;
86
+ return { comment : comment } ;
87
87
}
88
88
}
89
89
@@ -231,22 +231,22 @@ module.exports = function(css){
231
231
232
232
if ( ! open ( ) ) return ;
233
233
comments ( ) ;
234
-
234
+
235
235
// declarations
236
236
var decl ;
237
237
while ( decl = declaration ( ) ) {
238
238
decls . push ( decl ) ;
239
239
comments ( ) ;
240
240
}
241
-
241
+
242
242
if ( ! close ( ) ) return ;
243
243
return decls ;
244
244
}
245
245
246
246
/**
247
247
* Parse at rule.
248
248
*/
249
-
249
+
250
250
function atrule ( ) {
251
251
return keyframes ( )
252
252
|| media ( )
@@ -257,13 +257,13 @@ module.exports = function(css){
257
257
/**
258
258
* Parse rule.
259
259
*/
260
-
260
+
261
261
function rule ( ) {
262
262
var sel = selector ( ) ;
263
263
if ( ! sel ) return ;
264
264
comments ( ) ;
265
265
return { selectors : sel , declarations : declarations ( ) } ;
266
266
}
267
-
267
+
268
268
return stylesheet ( ) ;
269
269
} ;
You can’t perform that action at this time.
0 commit comments