function _Utils.deepCloneTable()

in scripts/lua/lib/utils.lua [132:142]


function _Utils.deepCloneTable(table)
  local tblRes = {}
  if type(table) == "table" then
    for k,v in pairs(table) do
      tblRes[k] = _Utils.deepCloneTable(v)
    end
  else
    tblRes = table
  end
  return tblRes
end