Version 1.1.2

This commit is contained in:
rxi 2014-03-08 16:10:16 +00:00
parent cbff46bdfb
commit a4fe134985

View File

@ -7,7 +7,7 @@
-- under the terms of the MIT license. See LICENSE for details.
--
local lume = { _version = "1.1.1" }
local lume = { _version = "1.1.2" }
function lume.clamp(x, min, max)
@ -76,7 +76,6 @@ function lume.shuffle(t)
end
function lume.array(...)
local t = {}
for x in unpack({...}) do t[#t + 1] = x end
@ -153,7 +152,6 @@ function lume.merge(t, t2, retainkeys)
end
function lume.find(t, value)
for k, v in pairs(t) do
if v == value then return k end