Embrosy

utils

Apr 7th, 2024
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. local utils = {}
  2.  
  3. function utils.inList(value, list)
  4.     for index, listValue in ipairs(list) do
  5.         if value == listValue then
  6.             return true
  7.         end
  8.     end
  9.     return false
  10. end
  11.  
  12. return utils
Tags: Utils
Add Comment
Please, Sign In to add comment