initial commit

This commit is contained in:
Ifrahim Ansari 2026-02-15 12:20:33 -05:00
parent 025a079ebe
commit 8f48d73476
291 changed files with 167331 additions and 0 deletions

View file

@ -0,0 +1,25 @@
'use strict'
let Container = require('./container')
class AtRule extends Container {
constructor(defaults) {
super(defaults)
this.type = 'atrule'
}
append(...children) {
if (!this.proxyOf.nodes) this.nodes = []
return super.append(...children)
}
prepend(...children) {
if (!this.proxyOf.nodes) this.nodes = []
return super.prepend(...children)
}
}
module.exports = AtRule
AtRule.default = AtRule
Container.registerAtRule(AtRule)