Skip to content

Commit 1a10e50

Browse files
committed
ocd
1 parent c09d5fc commit 1a10e50

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

index.js

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ module.exports = function(css){
8383
var comment = css.slice(2, i - 2);
8484
css = css.slice(i);
8585
whitespace();
86-
return {comment: comment};
86+
return { comment: comment };
8787
}
8888
}
8989

@@ -231,22 +231,22 @@ module.exports = function(css){
231231

232232
if (!open()) return;
233233
comments();
234-
234+
235235
// declarations
236236
var decl;
237237
while (decl = declaration()) {
238238
decls.push(decl);
239239
comments();
240240
}
241-
241+
242242
if (!close()) return;
243243
return decls;
244244
}
245245

246246
/**
247247
* Parse at rule.
248248
*/
249-
249+
250250
function atrule() {
251251
return keyframes()
252252
|| media()
@@ -257,13 +257,13 @@ module.exports = function(css){
257257
/**
258258
* Parse rule.
259259
*/
260-
260+
261261
function rule() {
262262
var sel = selector();
263263
if (!sel) return;
264264
comments();
265265
return { selectors: sel, declarations: declarations() };
266266
}
267-
267+
268268
return stylesheet();
269269
};

0 commit comments

Comments
 (0)