Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -102,11 +102,11 @@ You can only use the `cidr6()` function in [custom rules](/waf/custom-rules/) an
### `concat`

{/* prettier-ignore */}
<code>concat(<Type text="String | Integer | Bytes | Array elements" />)</code>: <Type text="String" />
<code>concat(<Type text="String | Bytes | Array elements" />)</code>: <Type text="String" />

Takes a comma-separated list of values. Concatenates the argument values into a single String.

For example, `concat("String1", " ", "String", 2)` will return `"String1 String2"`.
For example, `concat("String1", " ", "String", "2")` will return `"String1 String2"`.

### `decode_base64`

Expand Down
Loading