Returns chunks of source, broken up by delimiter (default '.').
source
delimiter
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` Copy
stringSegmentsFirstToWhole(`a.b.c.d`);// Yields:// `a`// `a.b`// `a.b.c`// `a.b.c.d`
Returns chunks of
source
, broken up bydelimiter
(default '.').We start with the first token and build up until end.
If
delimiter
is not found, no results are yielded.