Function mergeWithQuantifier

  • This operation tries to merge as many elements as possible with existing quantifiers.

    Examples:

    • /a*a/ => /a+/
    • /a*(?:a+|c)/ => /a*(?:a|c)/

    Parameters

    Returns Transformer