hardlounge/client/js/helpers/roundBadgeNumber.js

10 lines
152 B
JavaScript
Raw Normal View History

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