pull/6223/head
Conduitry 5 years ago
parent 62cbc267b0
commit 9ae8b226ca

@ -591,8 +591,13 @@ class Block {
this.selectors.push(selector);
this.end = selector.end;
}
get global() {
return this.selectors.length === 1 && this.selectors[0].type === 'PseudoClassSelector' && this.selectors[0].name === 'global';
return (
this.selectors.length === 1 &&
this.selectors[0].type === 'PseudoClassSelector' &&
this.selectors[0].name === 'global'
);
}
}

Loading…
Cancel
Save