Shared

Check where the passed value is an array or not

lib.isArray

lib.isArray(parameter)

Parameters

  • parameter any: The value to check

Returns

  • success boolean: Whether the value is an array or not

Examples

local object<const> = { name = 'Lenix', age = 20}
local array<const> = { 'Lenix', 20 }
 
local objectCheck = lib.isArray(object)
local arrayCheck = lib.isArray(array)
 
print(objectCheck) -- false
print(arrayCheck) -- true