()
| 639 | } |
| 640 | |
| 641 | private get ratioLower() { |
| 642 | if (this.dualKnobs) { |
| 643 | return Math.min(this.ratioA, this.ratioB); |
| 644 | } |
| 645 | const { activeBarStart } = this; |
| 646 | if (activeBarStart == null) { |
| 647 | return 0; |
| 648 | } |
| 649 | return valueToRatio(activeBarStart, this.min, this.max); |
| 650 | } |
| 651 | |
| 652 | private get ratioUpper() { |
| 653 | if (this.dualKnobs) { |
nothing calls this directly
no test coverage detected