Advertisement
Bolodefchoco_LUAXML

[Table] table.turnTable

Feb 26th, 2017
200
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.26 KB | None | 0 0
  1. --Creator: Bolodefchoco
  2. --Made in: 26/02/2017
  3. --Last update: 26/02/2017
  4. --[[ Notes:
  5.     Does:
  6.         Transforma x em tabela caso não seja, ou o retorna caso seja.
  7.     Args:
  8.         x --> Valor
  9. ]]--
  10.  
  11. table.turnTable = function(x)
  12.     return (type(x)=="table" and x or {x})
  13. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement