Difference between revisions of "Module:GetMediaValue"

From Buddha-Nature
((by SublimeText.Mediawiker))
((by SublimeText.Mediawiker))
 
(One intermediate revision by the same user not shown)
(No difference)

Latest revision as of 12:59, 5 September 2023

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

local personData = mw.loadData('Module:MediaData')

local p = {}

function p.main(frame)

    return personData[frame.args[1]]

end

return p