Returns chunks of source, broken up by delimiter (default '.').
source
delimiter
Starts with last token, builds to whole.
If delimiter is not found, no results are yielded.
stringSegmentsLastToWhole(`a.b.c.d`);// Yields:// `d`// `c.d`// `b.c.d`// `a.b.c.d````@param source Copy
stringSegmentsLastToWhole(`a.b.c.d`);// Yields:// `d`// `c.d`// `b.c.d`// `a.b.c.d````@param source
Returns chunks of
source
, broken up bydelimiter
(default '.').Starts with last token, builds to whole.
If
delimiter
is not found, no results are yielded.