Creates a sink joining the items of the feed into a string.
Items are rendered and joined as Array.prototype.join() would, that is through their default string
representation, null values excepted, which are rendered as empty strings; an empty feed joins to an empty
string.
Type Parameters
V
The type of items in the feed
Parameters
separator: string = ","
The string inserted between consecutive items, defaulting to ,
Creates a sink joining the items of the feed into a string.
Items are rendered and joined as
Array.prototype.join()would, that is through their default string representation,nullvalues excepted, which are rendered as empty strings; an empty feed joins to an empty string.