(from, to)
| 575 | // diffText returns text that displays from and to alongside their percentages. |
| 576 | // E.g., 9s (45%) 🠆 10s (50%) |
| 577 | function diffText(from, to) { |
| 578 | return percentText(from) + " 🠆 " + percentText(to); |
| 579 | } |
| 580 | |
| 581 | // percentText returns text that displays v in appropriate units alongside its |
| 582 | // percentage. |
no test coverage detected
searching dependent graphs…