printer-notifications/node_modules/postcss-scss/lib/nested-declaration.js
2023-11-13 16:10:04 -05:00

13 lines
259 B
JavaScript

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