Namespace: Util:str-join

Util:str-join

Source:

Methods

str-join(strings, glue) → {String}

Join/concatenate two or more strings with an optional glue string.

Parameters:
Name Type Description
strings String | List.<String>

the strings to join

glue String

the string to put between joined strings

Source:
Returns:
the joined string
Type
String
Example
str-join(['fo', 'ar'], 'ob')
  => 'foobar'