mirror of
https://github.com/henrywhitaker3/Speedtest-Tracker.git
synced 2025-12-30 09:45:10 +01:00
Updated to v1.9.9
This commit is contained in:
4
conf/site/node_modules/postcss-selector-parser/dist/parser.js
generated
vendored
4
conf/site/node_modules/postcss-selector-parser/dist/parser.js
generated
vendored
@@ -885,7 +885,9 @@ function () {
|
||||
_proto.space = function space() {
|
||||
var content = this.content(); // Handle space before and after the selector
|
||||
|
||||
if (this.position === 0 || this.prevToken[_tokenize.FIELDS.TYPE] === tokens.comma || this.prevToken[_tokenize.FIELDS.TYPE] === tokens.openParenthesis) {
|
||||
if (this.position === 0 || this.prevToken[_tokenize.FIELDS.TYPE] === tokens.comma || this.prevToken[_tokenize.FIELDS.TYPE] === tokens.openParenthesis || this.current.nodes.every(function (node) {
|
||||
return node.type === 'comment';
|
||||
})) {
|
||||
this.spaces = this.optionalSpace(content);
|
||||
this.position++;
|
||||
} else if (this.position === this.tokens.length - 1 || this.nextToken[_tokenize.FIELDS.TYPE] === tokens.comma || this.nextToken[_tokenize.FIELDS.TYPE] === tokens.closeParenthesis) {
|
||||
|
||||
Reference in New Issue
Block a user