TenantAtlas/apps/platform/.pnpm-store/v10/files/86/0eef2cb2ed1d8bb36dfe12ac8310b68ae4a24bbc194ea180a8b187c629b6824960486772d4b822d50453b9f1d1edf6aa50b7f32e792da3b64e06501c780ca9
Ahmed Darrazi 9f74f7a658
Some checks failed
PR Fast Feedback / fast-feedback (pull_request) Failing after 51s
feat: compress governance operator outcomes
2026-04-19 14:15:11 +02:00

26 lines
471 B
Plaintext

'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)