mirror of
https://github.com/sbrl/Minetest-WorldEditAdditions.git
synced 2024-11-05 06:53:52 +01:00
17 lines
529 B
Lua
17 lines
529 B
Lua
--- Polyfill for unpack / table.unpack.
|
|
-- Calls unpack when available, and looks for table.unpack if unpack() isn't
|
|
-- found.
|
|
-- This is needed because in Lua 5.1 it's the global unpack(), but in Lua 5.4
|
|
-- it's moved to table.unpack().
|
|
local function table_unpack(tbl, offset, count)
|
|
---@diagnostic disable-next-line: deprecated
|
|
if type(unpack) == "function" then
|
|
---@diagnostic disable-next-line: deprecated
|
|
return unpack(tbl, offset, count)
|
|
else
|
|
return table.unpack(tbl, offset, count)
|
|
end
|
|
end
|
|
|
|
return table_unpack
|