Module:RaritySort
Documentation for this module may be created at Module:RaritySort/doc
local p = {}
function p.getSortValue(rarity)
if rarity == nil or type(rarity) ~= "string" then
return "Input was nil or not string"
end
local r = mw.ustring.lower(rarity)
-- Show what was passed in and how it's interpreted
return "Input: " .. rarity .. " | Interpreted: " .. r
end
return p