diff options
Diffstat (limited to 'app/functions.js')
-rw-r--r-- | app/functions.js | 15 |
1 files changed, 0 insertions, 15 deletions
diff --git a/app/functions.js b/app/functions.js deleted file mode 100644 index 4d89e30..0000000 --- a/app/functions.js +++ /dev/null @@ -1,15 +0,0 @@ -// Function ported from /includes/header.inc (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" && parts[1] !== "Brightdawn") { - if (parts[0].includes("/")) { - return parts[0].split("/")[0]; - } else { - return parts[0]; - } - } else { - return name; - } -}
\ No newline at end of file |