• Generates indexes from the given arguments

    Parameters

    • args: number[] = []

      List of numbers

    • Optionalprefix: string

      Prefix to add to the indexes.

    • delimiter: string = "-"

      Delimiter to join the numbers with. Default is "-".

    Returns {
        fullId: string;
        identifier: string;
        name: null | string;
    }

    Object containing the fullId, identifier, and name.

    • fullId: string

      A unique identifier for the item. Example: draggable-role-0-1-2

    • identifier: string

      A unique identifier for the item. Example: 0-1-2

    • name: null | string

      A unique name for the item. Example: draggable-role

    0.4.0