ixfx
    Preparing search index...

    Function stringSegmentsFirstToWhole

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

      We start with the first token and build up until end.

      If delimiter is not found, no results are yielded.

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

      Parameters

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

      Returns Generator<string, void, unknown>