Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- local function copyTable(...)
- tArgs={...}
- local B={}
- for _,A in pairs(tArgs) do
- if A and type(A)=="table" then
- for i,k in pairs(A) do
- if type(k)=="table" and k ~= A then B[i]=copyTable( B[i] or {},k)
- elseif k ~= A then B[i]=k end
- end
- end
- end
- return B
- end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement