removed trim space function call (#4638)

This commit is contained in:
gabryon99 2020-10-28 17:14:07 +01:00
parent 5095758db2
commit 1ef27ad7ff
2 changed files with 0 additions and 10 deletions

View file

@ -3951,13 +3951,6 @@ end
function table.has_key(table, key)
return table[key] ~= nil
end
-- ###########################################
function string.rtrim(s)
local n = #s
while n > 0 and s:find("^%s", n) do n = n - 1 end
return s:sub(1, n)
end
-- ###########################################