File size: 259 Bytes
bc20498 |
1 2 3 4 5 6 7 8 9 10 11 12 13 |
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
|