This repository has been archived on 2022-10-07. You can view files and clone it, but cannot push or open issues or pull requests.
2022-03-15 21:53:31 +00:00
|
|
|
local _M = {}
|
|
|
|
|
|
|
|
-- utility function for checking if table is empty
|
2022-03-15 21:56:24 +00:00
|
|
|
function _M.is_table_empty(check)
|
2022-03-15 21:53:31 +00:00
|
|
|
-- bind next to local variable to achieve ultimate efficiency
|
|
|
|
-- https://stackoverflow.com/a/1252776
|
|
|
|
local next = next
|
|
|
|
|
|
|
|
return next(check) == nil
|
|
|
|
end
|
|
|
|
|
|
|
|
return _M
|