Use M & B instead of Million & Billion

This commit is contained in:
Rahul Kumar Patel
2021-02-16 08:57:01 +05:30
parent a17d312dc7
commit 308ed28b52

View File

@@ -40,8 +40,8 @@ object CommonUtil {
private val diPrefixes: Map<Int, String> = hashMapOf( private val diPrefixes: Map<Int, String> = hashMapOf(
Pair(1, ""), Pair(1, ""),
Pair(3, " K"), Pair(3, " K"),
Pair(6, " Million"), Pair(6, " M"),
Pair(9, " Billion") Pair(9, " B")
) )
fun addSiPrefix(value: Long): String { fun addSiPrefix(value: Long): String {