jecs/modules/Jabby/ui/util/consume.luau
2026-02-18 01:39:54 +01:00

10 lines
No EOL
146 B
Text

--[[
Consumes a property from a table and removes it
]]
return function(t: {}, key: string)
local v = t[key]; t[key] = nil
return v
end