Graduation / ui /node_modules /postcss-scss /lib /nested-declaration.js
DuyTa's picture
Upload folder using huggingface_hub
bc20498 verified
raw
history blame
259 Bytes
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