Returns chunks of source, broken up by delimiter (default '.').
source
delimiter
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` Copy
stringSegmentsWholeToEnd(`a.b.c.d`);// Yields:// `a.b.c.d`// `b.c.d`// `c.d`// `d`
Returns chunks of
source
, broken up bydelimiter
(default '.').Whittles down from whole string to last token.
If
delimiter
is not found, no results are yielded.