Module:MD5

From Seeds of the Word, the encyclopedia of the influence of the Gospel on culture
Revision as of 00:34, September 10, 2020 by Johnrdorazio (talk | contribs)

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

local p = {}
local getArgs = require('Module:Arguments').getArgs

function p.main(frame)
    local args = getArgs(frame)
    -- let's make sure defaults are set
    args.value = args.value or ""
    return mw.hash.hashValue('md5',args.value)
end
return p