(line)
| 130 | // ============================================================================ |
| 131 | |
| 132 | function getSampleCount(line) { |
| 133 | let text; |
| 134 | if (colorMode === 'self') { |
| 135 | text = line.querySelector('.line-samples-self')?.textContent.trim().replace(/,/g, ''); |
| 136 | } else { |
| 137 | text = line.querySelector('.line-samples-cumulative')?.textContent.trim().replace(/,/g, ''); |
| 138 | } |
| 139 | return parseInt(text) || 0; |
| 140 | } |
| 141 | |
| 142 | // ============================================================================ |
| 143 | // Scroll Minimap |
no test coverage detected
searching dependent graphs…