jecs/modules/Jabby/ui/util/consume.luau

10 lines
146 B
Text
Raw Normal View History

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