thelounge/client/js/helpers/roundBadgeNumber.js

10 lines
152 B
JavaScript
Raw Normal View History

"use strict";
2019-11-16 18:24:03 +01:00
export default (count) => {
2016-12-18 16:53:28 +01:00
if (count < 1000) {
2017-11-29 06:31:03 +01:00
return count.toString();
}
2016-12-18 16:53:28 +01:00
return (count / 1000).toFixed(2).slice(0, -1) + "k";
};