()
| 53 | |
| 54 | _classesCache; |
| 55 | get classes() { |
| 56 | if (this._classesCache) return this._classesCache; |
| 57 | return this._classesCache = this.className.split(' '); |
| 58 | } |
| 59 | |
| 60 | get previousSiblings() { |
| 61 | return !this.parent ? [] : this.parent.children.slice(0, this.parent.children.indexOf(this)); |
nothing calls this directly
no outgoing calls
no test coverage detected