()
| 15294 | return !this.isNodeJs() |
| 15295 | } |
| 15296 | getOlderSiblings() { |
| 15297 | if (this.isRoot()) return [] |
| 15298 | return this.parent.slice(0, this.index) |
| 15299 | } |
| 15300 | _getClosestOlderSibling() { |
| 15301 | const olderSiblings = this.getOlderSiblings() |
| 15302 | return olderSiblings[olderSiblings.length - 1] |
no test coverage detected