mirror of
https://github.com/fusionpbx/fusionpbx.git
synced 2026-01-01 09:43:50 +00:00
5 lines
92 B
Lua
5 lines
92 B
Lua
|
|
--add the trim function
|
|
function trim(s)
|
|
return s:gsub("^%s+", ""):gsub("%s+$", "")
|
|
end |