mirror of
https://github.com/libre-tube/LibreTube.git
synced 2024-12-15 23:00:31 +05:30
23 lines
633 B
Kotlin
23 lines
633 B
Kotlin
package com.github.libretube
|
|
|
|
import java.math.BigDecimal
|
|
import java.math.RoundingMode
|
|
|
|
fun Long?.formatShort(): String = when {
|
|
this!! < 1000 -> {
|
|
this.toString()
|
|
}
|
|
this in 1000..999999 -> {
|
|
val decimal = BigDecimal(this / 1000).setScale(0, RoundingMode.HALF_EVEN)
|
|
decimal.toString() + "K"
|
|
}
|
|
this in 1000000..10000000 -> {
|
|
val decimal = BigDecimal(this / 1000000).setScale(0, RoundingMode.HALF_EVEN)
|
|
decimal.toString() + "M"
|
|
}
|
|
else -> {
|
|
val decimal = BigDecimal(this / 1000000).setScale(0, RoundingMode.HALF_EVEN)
|
|
decimal.toString() + "M"
|
|
}
|
|
}
|