Files
soldr-modules/tests_framework/lua/cliargs/utils/shallow_copy.lua
T
2022-11-22 02:21:28 +03:00

16 lines
329 B
Lua

-- courtesy of http://lua-users.org/wiki/CopyTable
local function shallow_copy(orig)
if type(orig) == 'table' then
local copy = {}
for orig_key, orig_value in pairs(orig) do
copy[orig_key] = orig_value
end
return copy
else -- number, string, boolean, etc
return orig
end
end
return shallow_copy