hardlounge/client/js/helpers/roundBadgeNumber.js

10 lines
152 B
JavaScript
Raw Normal View History

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