Initial commit
This commit is contained in:
12
node_modules/postcss-scss/lib/nested-declaration.js
generated
vendored
Normal file
12
node_modules/postcss-scss/lib/nested-declaration.js
generated
vendored
Normal file
@@ -0,0 +1,12 @@
|
||||
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
|
||||
Reference in New Issue
Block a user