const { Container } = require('postcss') | |
class NestedDeclaration extends Container { | |
constructor(defaults) { | |
super(defaults) | |
this.type = 'decl' | |
this.isNested = true | |
if (!this.nodes) this.nodes = [] | |
} | |
} | |
module.exports = NestedDeclaration | |
const { Container } = require('postcss') | |
class NestedDeclaration extends Container { | |
constructor(defaults) { | |
super(defaults) | |
this.type = 'decl' | |
this.isNested = true | |
if (!this.nodes) this.nodes = [] | |
} | |
} | |
module.exports = NestedDeclaration | |