about summary refs log tree commit diff stats
path: root/util.lua
blob: 938848cbbcc6130df7948f10863477b56ddceb09 (plain)
1
2
3
4
5
6
7
8
9
10
11
--- lam.util

local util = {}
local unpack = table.unpack or unpack

function util.pop (tbl)
	return table.remove(tbl, 1)
end

---
return util