@@ -12,7 +12,7 @@ var uUpper = "U".charCodeAt(0);
1212var plus = "+" . charCodeAt ( 0 ) ;
1313var isUnicodeRange = / ^ [ a - f 0 - 9 ? - ] + $ / i;
1414
15- module . exports = function ( input ) {
15+ module . exports = function ( input ) {
1616 var tokens = [ ] ;
1717 var value = input ;
1818
@@ -65,7 +65,7 @@ module.exports = function(input) {
6565 type : "space" ,
6666 sourceIndex : pos ,
6767 sourceEndIndex : next ,
68- value : token
68+ value : token ,
6969 } ) ;
7070 }
7171
@@ -78,7 +78,7 @@ module.exports = function(input) {
7878 token = {
7979 type : "string" ,
8080 sourceIndex : pos ,
81- quote : quote
81+ quote : quote ,
8282 } ;
8383 do {
8484 escape = false ;
@@ -108,7 +108,7 @@ module.exports = function(input) {
108108 token = {
109109 type : "comment" ,
110110 sourceIndex : pos ,
111- sourceEndIndex : next + 2
111+ sourceEndIndex : next + 2 ,
112112 } ;
113113
114114 if ( next === - 1 ) {
@@ -135,7 +135,7 @@ module.exports = function(input) {
135135 type : "word" ,
136136 sourceIndex : pos - before . length ,
137137 sourceEndIndex : pos + token . length ,
138- value : token
138+ value : token ,
139139 } ) ;
140140 pos += 1 ;
141141 code = value . charCodeAt ( pos ) ;
@@ -150,7 +150,7 @@ module.exports = function(input) {
150150 sourceEndIndex : pos + token . length ,
151151 value : token ,
152152 before : before ,
153- after : ""
153+ after : "" ,
154154 } ) ;
155155 before = "" ;
156156
@@ -170,7 +170,7 @@ module.exports = function(input) {
170170 type : "function" ,
171171 sourceIndex : pos - name . length ,
172172 value : name ,
173- before : value . slice ( parenthesesOpenPos + 1 , next )
173+ before : value . slice ( parenthesesOpenPos + 1 , next ) ,
174174 } ;
175175 pos = next ;
176176
@@ -204,8 +204,8 @@ module.exports = function(input) {
204204 type : "word" ,
205205 sourceIndex : pos ,
206206 sourceEndIndex : whitespacePos + 1 ,
207- value : value . slice ( pos , whitespacePos + 1 )
208- }
207+ value : value . slice ( pos , whitespacePos + 1 ) ,
208+ } ,
209209 ] ;
210210 } else {
211211 token . nodes = [ ] ;
@@ -216,7 +216,7 @@ module.exports = function(input) {
216216 type : "space" ,
217217 sourceIndex : whitespacePos + 1 ,
218218 sourceEndIndex : next ,
219- value : value . slice ( whitespacePos + 1 , next )
219+ value : value . slice ( whitespacePos + 1 , next ) ,
220220 } ) ;
221221 } else {
222222 token . after = value . slice ( whitespacePos + 1 , next ) ;
@@ -297,14 +297,14 @@ module.exports = function(input) {
297297 type : "unicode-range" ,
298298 sourceIndex : pos ,
299299 sourceEndIndex : next ,
300- value : token
300+ value : token ,
301301 } ) ;
302302 } else {
303303 tokens . push ( {
304304 type : "word" ,
305305 sourceIndex : pos ,
306306 sourceEndIndex : next ,
307- value : token
307+ value : token ,
308308 } ) ;
309309 }
310310
0 commit comments