dev

This module was made as a sandbox for the user The JoTS. This documentation is kept to prevent redlinks.


return {
    
    [''] = function() return "Empty string function" end,
    main = function() 
        local t = require("Module:Sandbox/The JoTS/LuaJSON")
            .DecodeJSONFromMessage("Custom-MassEdit/i18n.json") -- grabbed latest in rc
        return next(t["en"])
    end,
    
    echo = function(frame)
        return frame.args[1]
    end,
    
    echo_process = function(frame)
        return frame:preprocess( frame.args[1] )
    end
    
}