拿掉 build files

This commit is contained in:
2022-07-18 16:33:23 +08:00
parent 41e2287bcb
commit 3707f158a3
31953 changed files with 0 additions and 4411796 deletions
-9
View File
@@ -1,9 +0,0 @@
var DISALLOW_OF_CLAUSE = false;
module.exports = {
parse: function nth() {
return this.createSingleNodeList(
this.Nth(DISALLOW_OF_CLAUSE)
);
}
};
-9
View File
@@ -1,9 +0,0 @@
var ALLOW_OF_CLAUSE = true;
module.exports = {
parse: function nthWithOfClause() {
return this.createSingleNodeList(
this.Nth(ALLOW_OF_CLAUSE)
);
}
};
-7
View File
@@ -1,7 +0,0 @@
module.exports = {
parse: function selectorList() {
return this.createSingleNodeList(
this.SelectorList()
);
}
};
-7
View File
@@ -1,7 +0,0 @@
module.exports = {
parse: function() {
return this.createSingleNodeList(
this.Identifier()
);
}
};
-7
View File
@@ -1,7 +0,0 @@
module.exports = {
parse: function() {
return this.createSingleNodeList(
this.SelectorList()
);
}
};
-12
View File
@@ -1,12 +0,0 @@
module.exports = {
'dir': require('./dir'),
'has': require('./has'),
'lang': require('./lang'),
'matches': require('./matches'),
'not': require('./not'),
'nth-child': require('./nth-child'),
'nth-last-child': require('./nth-last-child'),
'nth-last-of-type': require('./nth-last-of-type'),
'nth-of-type': require('./nth-of-type'),
'slotted': require('./slotted')
};
-7
View File
@@ -1,7 +0,0 @@
module.exports = {
parse: function() {
return this.createSingleNodeList(
this.Identifier()
);
}
};
-1
View File
@@ -1 +0,0 @@
module.exports = require('./common/selectorList');
-1
View File
@@ -1 +0,0 @@
module.exports = require('./common/selectorList');
-1
View File
@@ -1 +0,0 @@
module.exports = require('./common/nthWithOfClause');
-1
View File
@@ -1 +0,0 @@
module.exports = require('./common/nthWithOfClause');
-1
View File
@@ -1 +0,0 @@
module.exports = require('./common/nth');
-1
View File
@@ -1 +0,0 @@
module.exports = require('./common/nth');
-7
View File
@@ -1,7 +0,0 @@
module.exports = {
parse: function compoundSelector() {
return this.createSingleNodeList(
this.Selector()
);
}
};