2018-10-04 05:18:36 +03:00
|
|
|
export const getReputation = (reputation) => {
|
2018-09-30 03:37:26 +03:00
|
|
|
if (reputation === null) return reputation;
|
|
|
|
|
|
|
|
let _reputation = String(parseInt(reputation));
|
|
|
|
|
2018-10-04 05:18:36 +03:00
|
|
|
const neg = _reputation.charAt(0) === '-';
|
2018-09-30 03:37:26 +03:00
|
|
|
_reputation = neg ? _reputation.substring(1) : _reputation;
|
|
|
|
|
|
|
|
const str = _reputation;
|
|
|
|
const leadingDigits = parseInt(str.substring(0, 4));
|
|
|
|
const log = Math.log(leadingDigits) / Math.log(10);
|
|
|
|
const n = str.length - 1;
|
|
|
|
let out = n + (log - parseInt(log));
|
|
|
|
|
|
|
|
if (isNaN(out)) out = 0;
|
|
|
|
|
|
|
|
out = Math.max(out - 9, 0);
|
|
|
|
out = (neg ? -1 : 1) * out;
|
|
|
|
out = out * 9 + 25;
|
|
|
|
out = parseInt(out);
|
|
|
|
|
|
|
|
return out;
|
2018-08-01 22:24:34 +03:00
|
|
|
};
|