Files
soldr-modules/tests_framework/lua/cliargs/utils/trim.lua
T
2022-11-22 02:21:28 +03:00

4 lines
122 B
Lua

-- courtesy of the jungle: http://lua-users.org/wiki/StringTrim
return function(str)
return str:match "^%s*(.-)%s*$"
end