Returns chunks of source, broken up by delimiter (default '.').
source
delimiter
We start with whole string and whittle down to starting token.
If delimiter is not found, no results are yielded.
stringSegmentsWholeToFirst(`a.b.c.d`);// Yields:// `a.b.c.d`// `a.b.c`,// `a.b`,// `a`, Copy
stringSegmentsWholeToFirst(`a.b.c.d`);// Yields:// `a.b.c.d`// `a.b.c`,// `a.b`,// `a`,
Returns chunks of
source
, broken up bydelimiter
(default '.').We start with whole string and whittle down to starting token.
If
delimiter
is not found, no results are yielded.