mirror of
https://github.com/redlib-org/redlib.git
synced 2025-04-05 05:57:40 +03:00
Add million support
This commit is contained in:
parent
8509f6e22d
commit
528fe15819
3 changed files with 9 additions and 3 deletions
|
@ -88,7 +88,13 @@ pub async fn format_url(url: &str) -> String {
|
|||
}
|
||||
|
||||
pub fn format_num(num: i64) -> String {
|
||||
return if num > 1000 { format!("{}k", num / 1000) } else { num.to_string() };
|
||||
if num > 1000000 {
|
||||
format!("{}m", num / 1000000)
|
||||
} else if num > 1000 {
|
||||
format!("{}k", num / 1000)
|
||||
} else {
|
||||
num.to_string()
|
||||
}
|
||||
}
|
||||
|
||||
//
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue