mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
util.iterators: Use table.pack() on Lua 5.2
This commit is contained in:
parent
29c6aed489
commit
11ebf4f1dc
1 changed files with 1 additions and 1 deletions
|
@ -13,7 +13,7 @@ local it = {};
|
|||
local t_insert = table.insert;
|
||||
local select, next = select, next;
|
||||
local unpack = table.unpack or unpack; --luacheck: ignore 113
|
||||
local function pack(...) return { n = select("#", ...), ... }; end
|
||||
local pack = table.pack or function (...) return { n = select("#", ...), ... }; end
|
||||
|
||||
-- Reverse an iterator
|
||||
function it.reverse(f, s, var)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue