mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 05:37:39 +03:00
util.iterators: Localize unpack() in Lua 5.2 compatible way
This commit is contained in:
parent
792b0e8d79
commit
a2c0f6d645
1 changed files with 2 additions and 1 deletions
|
@ -11,7 +11,8 @@
|
|||
local it = {};
|
||||
|
||||
local t_insert = table.insert;
|
||||
local select, unpack, next = select, unpack, next;
|
||||
local select, next = select, next;
|
||||
local unpack = table.unpack or unpack; --luacheck: ignore 113
|
||||
local function pack(...) return { n = select("#", ...), ... }; end
|
||||
|
||||
-- Reverse an iterator
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue