You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
"summary": "Concatenate elements to a single text",
4
+
"description": "Merges text representations (also known as *string*) of a set of elements to a single text, having the separator between each element.",
5
+
"categories": [
6
+
"texts"
7
+
],
8
+
"parameters": [
9
+
{
10
+
"name": "data",
11
+
"description": "A set of elements. Numbers, boolean values and null values get converted to their (lower case) string representation. For example: `1` (integer), `-1.5` (number), `true` / `false` (boolean values)",
12
+
"schema": {
13
+
"type": "array",
14
+
"items": {
15
+
"type": [
16
+
"string",
17
+
"number",
18
+
"boolean",
19
+
"null"
20
+
]
21
+
}
22
+
}
23
+
},
24
+
{
25
+
"name": "separator",
26
+
"description": "A separator to put between each of the individual texts. Defaults to an empty string.",
27
+
"schema": {
28
+
"type": [
29
+
"string",
30
+
"number",
31
+
"boolean",
32
+
"null"
33
+
]
34
+
},
35
+
"default": "",
36
+
"optional": true
37
+
}
38
+
],
39
+
"returns": {
40
+
"description": "A string containing a string representation of all the array elements in the same order, with the separator between each element.",
0 commit comments