nested-declaration.js 259 B

123456789101112
  1. const { Container } = require('postcss')
  2. class NestedDeclaration extends Container {
  3. constructor(defaults) {
  4. super(defaults)
  5. this.type = 'decl'
  6. this.isNested = true
  7. if (!this.nodes) this.nodes = []
  8. }
  9. }
  10. module.exports = NestedDeclaration