Returns whether or not the given table is empty.
This works on both sequential and non-sequential tables, and is a lot faster for non-sequential tables than table.Count(tbl) == 0.
table.Count(tbl) == 0
For sequential tables it is better to use tab[1] == nil.
tab[1] == nil