We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 10cfc65 commit 6f61b2aCopy full SHA for 6f61b2a
lib/lexer.js
@@ -5,6 +5,7 @@
5
6
var pseudos = [
7
':selection',
8
+ 'fullscreen',
9
'nth-child',
10
'first-child',
11
'last-child',
@@ -117,7 +118,7 @@ module.exports = function(str) {
117
118
/**
119
* Comment.
120
*/
-
121
+
122
function comment() {
123
var m = str.match(/^\/\/([^\n]*)/);
124
if (!m) return;
@@ -171,7 +172,7 @@ module.exports = function(str) {
171
172
173
* Parent reference.
174
175
176
function parent() {
177
var m = str.match(/^ *&([^\n]*)/);
178
@@ -203,4 +204,4 @@ module.exports = function(str) {
203
204
m = m[0].split(/\s*,\s*/);
205
return ['rule', m];
206
}
-}
207
+}
0 commit comments