Removed _config.debug and table.map_length
This commit is contained in:
parent
16c51485bc
commit
a553b8c428
@ -84,14 +84,6 @@ function vardump(value, depth, key)
|
||||
local linePrefix = ""
|
||||
local spaces = ""
|
||||
|
||||
-- print("++++++++++ --> " .. _config.debug)
|
||||
|
||||
if _config.debug ~= nil then
|
||||
if _config.debug == false then
|
||||
return ""
|
||||
end
|
||||
end
|
||||
|
||||
if key ~= nil then
|
||||
linePrefix = "["..key.."] = "
|
||||
end
|
||||
@ -314,14 +306,3 @@ function send_document_from_url(receiver, url, cb_function, cb_extra)
|
||||
print("File path: "..file_path)
|
||||
_send_document(receiver, file_path, cb_function, cb_extra)
|
||||
end
|
||||
|
||||
-- http://stackoverflow.com/a/14377694/156869
|
||||
-- get length of an array
|
||||
function table.map_length(t)
|
||||
local c = 0
|
||||
for k,v in pairs(t) do
|
||||
c = c+1
|
||||
end
|
||||
return c
|
||||
end
|
||||
|
||||
|
Reference in New Issue
Block a user