Anonymous

Module:CommonFunctions: Difference between revisions

From Elwiki
no edit summary
No edit summary
No edit summary
Line 262: Line 262:
     end
     end
     return frame:preprocess(s)
     return frame:preprocess(s)
end
function table.fusion(...)
    local arg={...}
    local output_table = {}
    for i, v in ipairs(arg) do
        table.insert(output_table, unpack(v))
    end
    return output_table
end
end