table_merge.lua
📑 Source
Merges two tables without mutating them
table_merge({a = 1, b = 3}, {b = 2, c = 3}) -- {a = 1, b = 2, c = 3}