@chassis/core
Version:
CSS4 pre-processor and responsive framework for modern UI development
43 lines (33 loc) • 681 B
JavaScript
export default class Class {
constructor (source, parent) {
this.
this.
}
get nodes () {
return this.
}
get extensions () {
return this.
}
get hasExtensions () {
return this.
}
get isExtension () {
return !!this.
}
get lineage () {
return [...(this.parent?.lineage ?? []), this.parent].filter(Boolean)
}
get name () {
return this.
}
get parent () {
return this.
}
addExtension (component) {
this.
}
}