thelounge/client/js/libs/handlebars/roundBadgeNumber.js

10 lines
159 B
JavaScript
Raw Normal View History

"use strict";
2016-12-18 16:53:28 +01:00
module.exports = function(count) {
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";
};