mirror of
https://github.com/Ukendio/jecs.git
synced 2026-04-10 07:57:06 +00:00
10 lines
146 B
Text
10 lines
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
|