blob: 207bc42ebf698446edcc751af6841e1cef56b5f4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
// Function ported from /includes/header.php (line 18)
// Ported function has matched behavior.
function getMiniName(name) {
let parts = name.split(" ");
if (parts[0].length > 3 && !parts[0].endsWith("e") && parts[0] !== "Filly" && parts[0] !== "Windy") {
if (parts[0].includes("/")) {
return parts[0].split("/")[0];
} else {
return parts[0];
}
} else {
return name;
}
}
|