export is_table_empty from utils module

This commit is contained in:
Karol Wypchlo 2022-03-15 22:56:24 +01:00
parent e8345a3be6
commit 8623f53d9d
No known key found for this signature in database
GPG Key ID: B515DE9EEBE241E1
1 changed files with 1 additions and 1 deletions

View File

@ -1,7 +1,7 @@
local _M = {}
-- utility function for checking if table is empty
function is_table_empty(check)
function _M.is_table_empty(check)
-- bind next to local variable to achieve ultimate efficiency
-- https://stackoverflow.com/a/1252776
local next = next