mirror of
https://github.com/tacigar/maidroid.git
synced 2025-02-04 19:30:18 +01:00
16 lines
373 B
Lua
16 lines
373 B
Lua
|
------------------------------------------------------------
|
||
|
-- Copyright (c) 2016 tacigar. All rights reserved.
|
||
|
-- https://github.com/tacigar/maidroid
|
||
|
------------------------------------------------------------
|
||
|
|
||
|
maidroid_aux.table = {}
|
||
|
|
||
|
function maidroid_aux.table.find(t, v)
|
||
|
for _, value in ipairs(t) do
|
||
|
if v == value then
|
||
|
return true
|
||
|
end
|
||
|
end
|
||
|
return false
|
||
|
end
|