Removed unnecessary pack & unpack from lume.array()

This commit is contained in:
rxi 2014-06-16 21:07:40 +01:00
parent 0cc52cd24e
commit d99bf9549a

View File

@ -121,7 +121,7 @@ end
function lume.array(...)
local t = {}
for x in unpack({...}) do t[#t + 1] = x end
for x in ... do t[#t + 1] = x end
return t
end