Skip to content

Commit 19b5f86

Browse files
maletsdengucong3000
authored andcommitted
Small changes
1 parent a88398d commit 19b5f86

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

parser.es6

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -503,7 +503,7 @@ class SassParser {
503503

504504
// Create Rule node
505505
const atrule = postcss.atRule()
506-
atrule.name = node.type;
506+
atrule.name = node.type
507507

508508
// Object to store raws for Atrule
509509
const atRuleRaws = {
@@ -555,7 +555,7 @@ class SassParser {
555555

556556
// Create Rule node
557557
const atrule = postcss.atRule()
558-
atrule.name = node.type;
558+
atrule.name = node.type
559559

560560
// Object to store raws for Atrule
561561
const atRuleRaws = {
@@ -599,7 +599,6 @@ class SassParser {
599599
input: this.input
600600
}
601601
atrule.raws = atRuleRaws
602-
console.log(atrule);
603602
parent.nodes.push(atrule)
604603
}
605604
}

0 commit comments

Comments
 (0)