mirror of
https://github.com/Ukendio/jecs.git
synced 2026-03-18 00:44:32 +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
|