ixfx
    Preparing search index...

    Function stringSegmentsWholeToEnd

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

      Whittles down from whole string to last token.

      If delimiter is not found, no results are yielded.

      stringSegmentsWholeToEnd(`a.b.c.d`);
      // Yields:
      // `a.b.c.d`
      // `b.c.d`
      // `c.d`
      // `d`

      Parameters

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

      Returns Generator<string, void, unknown>