aboutsummaryrefslogtreecommitdiff
path: root/build/cleaners
diff options
context:
space:
mode:
Diffstat (limited to 'build/cleaners')
-rw-r--r--build/cleaners/rank.js7
1 files changed, 3 insertions, 4 deletions
diff --git a/build/cleaners/rank.js b/build/cleaners/rank.js
index a9e5f35..4fef6c0 100644
--- a/build/cleaners/rank.js
+++ b/build/cleaners/rank.js
@@ -16,6 +16,7 @@ const rankColors = {
};
/** Response cleaning (reformatting to be nicer) */
function cleanRank({ packageRank, newPackageRank, monthlyPackageRank, rankPlusColor, rank, prefix }) {
+ var _a;
let name;
let color;
let colored;
@@ -25,12 +26,10 @@ function cleanRank({ packageRank, newPackageRank, monthlyPackageRank, rankPlusCo
name = colored.replace(/ยง./g, '').replace(/[\[\]]/g, '');
}
else {
- if (monthlyPackageRank !== 'NONE')
+ if (monthlyPackageRank && monthlyPackageRank !== 'NONE')
name = monthlyPackageRank;
else
- name = rank
- || (newPackageRank === null || newPackageRank === void 0 ? void 0 : newPackageRank.replace('_PLUS', '+'))
- || (packageRank === null || packageRank === void 0 ? void 0 : packageRank.replace('_PLUS', '+'));
+ name = (_a = rank !== null && rank !== void 0 ? rank : newPackageRank === null || newPackageRank === void 0 ? void 0 : newPackageRank.replace('_PLUS', '+')) !== null && _a !== void 0 ? _a : packageRank === null || packageRank === void 0 ? void 0 : packageRank.replace('_PLUS', '+');
// MVP++ is called Superstar for some reason
if (name === 'SUPERSTAR')
name = 'MVP++';