Module:Test: Difference between revisions

From Roat Pkz
Jump to navigation Jump to search
No edit summary
No edit summary
Line 4: Line 4:
-- Function to get price by item name
-- Function to get price by item name
function test.getPrice(itemName)
function test.getPrice(itemName)
     local data = mw.loadData("Module:GEPrices/data")
     local jsonData = mw.loadJsonData("Module:GEPrices/data")
     return data[itemName] or nil
    if not jsonData then
        return nil
    end
     return jsonData[itemName] or nil
end
end


return test
return test

Revision as of 22:30, 3 April 2024

Documentation for this module may be created at Module:Test/doc

-- Module table
local test = {}

-- Function to get price by item name
function test.getPrice(itemName)
    local jsonData = mw.loadJsonData("Module:GEPrices/data")
    if not jsonData then
        return nil
    end
    return jsonData[itemName] or nil
end

return test