// 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") { if (parts[0].includes("/")) { return parts[0].split("/")[0]; } else { return parts[0]; } } else { return name; } }