v.20.4Improvement
Extend splitByString to Support Empty Strings as Separators
Why it matters
This feature allows users to use an empty string as a separator insplitByString, enabling new ways to split strings, such as splitting into individual characters, which was not possible before.How to use it
Simply callsplitByString with an empty string as the separator, for example: splitByString('', 'your_string') to split a string into its constituent characters.