mirror of
https://github.com/fusionpbx/fusionpbx.git
synced 2025-12-31 01:23: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 |