@wtasnorg/node-lib / splitSeqString
splitSeqString(
s,sep):Generator<string,void,unknown>
Defined in: src/strings.ts:861
SplitSeq returns an iterator over all substrings of s separated by sep. If sep is empty, SplitSeq splits after each UTF-8 sequence.
string
Input string.
string
Separator string.
Generator<string, void, unknown>
Iterator over substrings.