ixfx
    Preparing search index...

    Function stringSegmentsLastToWhole

    • Returns chunks of source, broken up by delimiter (default '.').

      Starts with last token, builds to whole.

      If delimiter is not found, no results are yielded.

      stringSegmentsLastToWhole(`a.b.c.d`);
      // Yields:
      // `d`
      // `c.d`
      // `b.c.d`
      // `a.b.c.d`
      ```
      @param source

      Parameters

      • source: string
      • delimiter: string = ...

      Returns Generator<string, void, unknown>