summaryrefslogtreecommitdiff
path: root/misc/freeswitch/scripts/common/str.lua
diff options
context:
space:
mode:
authorPeter Kozak <spag@golwen.net>2013-03-14 05:40:41 -0400
committerPeter Kozak <spag@golwen.net>2013-03-14 05:40:41 -0400
commit7df40cfaea4690be9e5dabf57563dddec797fa3b (patch)
treeef10086b84158a7e223bd53a9865c377ae5eb6b5 /misc/freeswitch/scripts/common/str.lua
parentf68ec2773bef2edccad6a93f92fc33c23e59272e (diff)
obsolete methods removed
Diffstat (limited to 'misc/freeswitch/scripts/common/str.lua')
-rw-r--r--misc/freeswitch/scripts/common/str.lua20
1 files changed, 0 insertions, 20 deletions
diff --git a/misc/freeswitch/scripts/common/str.lua b/misc/freeswitch/scripts/common/str.lua
index 0673421..3fd8fde 100644
--- a/misc/freeswitch/scripts/common/str.lua
+++ b/misc/freeswitch/scripts/common/str.lua
@@ -129,23 +129,3 @@ function append(buffer, value, separator, prefix, suffix)
return buffer;
end
-
--- concatenate array values to string
-function concat(array, separator, prefix, suffix)
- local buffer = '';
- for key, value in pairs(array) do
- buffer = append(buffer, value, separator, prefix, suffix);
- end
-
- return buffer;
-end
-
--- concatenate array keys to string
-function concat_keys(array, separator, prefix, suffix)
- local buffer = '';
- for key, value in pairs(array) do
- buffer = append(buffer, key, separator, prefix, suffix);
- end
-
- return buffer;
-end