(percentage: Percentage)
| 11 | * @returns Volume level in the range `0.0`–`1.0`. |
| 12 | */ |
| 13 | export function volumePercentageToLevel(percentage: Percentage): number { |
| 14 | return percentage / 100; |
| 15 | } |
| 16 | |
| 17 | /** |
| 18 | * Returns `true` if the volume can be decreased by one step. |
no outgoing calls
no test coverage detected