diff options
| author | Bruce Hill <bitbucket@bruce-hill.com> | 2017-09-26 15:27:01 -0700 |
|---|---|---|
| committer | Bruce Hill <bitbucket@bruce-hill.com> | 2017-09-26 15:27:01 -0700 |
| commit | 10d61df78bdbf002a3701e468b0a3c88be2cad03 (patch) | |
| tree | 3199e67f26a5b42e5aa5ccdd03a5924486f31b79 /utils.lua | |
| parent | 02def0af9226d7b0b86195093a87ef251934c797 (diff) | |
Making forward progress.
Diffstat (limited to 'utils.lua')
| -rw-r--r-- | utils.lua | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -1,6 +1,9 @@ local utils utils = { is_list = function(t) + if type(t) ~= 'table' then + return false + end local i = 1 for _ in pairs(t) do if t[i] == nil then |
