Changes

m
no edit summary
Line 5: Line 5:  
local m = require("Module:" .. frame.args[1])
 
local m = require("Module:" .. frame.args[1])
 
local f = frame.args[2]
 
local f = frame.args[2]
return m[f](m, unpack(frame.args, 3))
+
local args = {}
 +
for k, v in pairs(frame.args) do
 +
if type(k) == "number" and k >= 3 and type(v) == "string" then
 +
table.insert(args, v)
 +
end
 +
end
 +
return m[f](m, unpack(args))
 
end
 
end
    
return Utils
 
return Utils
cssedit, gkautomate
6,926

edits