?
to-delimited-string
Summary​
Convert object to delimited string
Description​
Fields​
Object​
An object to be converted into a string.
Separator​
A string used to separate keys and values.
Delimiter​
The string to separate key/value pairs.
Key Interpolation​
Used to alter the key formats using string interpolation. By default, the key will be used without any changes. Examples: some-prefix-${key}
, ${key}-some-suffix
.
Value Interpolation​
Used to alter the value formats using string interpolation. By default, the key will be used without any changes. Examples: some-prefix-${value}
, ${value}-some-suffix
.
Helpful?