Version 1.5.0

* Fix table concat bug
* Add `setup_buffer`
This commit is contained in:
Lukas Reineke
2022-01-06 00:03:49 +09:00
parent 7ea856fea0
commit 2296cb4ef6
3 changed files with 31 additions and 4 deletions
+10
View File
@@ -0,0 +1,10 @@
local M = {}
function M.concat_table(t1, t2)
for _, v in ipairs(t2) do
t1[#t1 + 1] = v
end
return t1
end
return M