• Joins the items of the given iterable to a string, based on the given options. The default separator is a single comma without trailing whitespace: ','.

    By default, no options are required and the default transform function will safely convert null and undefined via `${v}` and everything else with v.toString().

    See

    toStringSafe the default transform function

    Type Parameters

    Type Parameters

    • T

    Parameters

    • iterable: Iterable<T>

      the iterable to join to a string

    • Optional options: Partial<JoinToStringOptions<T>>

      the options for joining

    Returns string

Generated using TypeDoc