Internal
Splits a string at the first occurrence of a delimiter. Returns a [before, after] tuple.
[before, after]
The string to split
The delimiter character
A tuple [beforeDelimiter, afterDelimiter]
[beforeDelimiter, afterDelimiter]
splitAt('hello=world', '='); // ['hello', 'world'] Copy
splitAt('hello=world', '='); // ['hello', 'world']
Splits a string at the first occurrence of a delimiter. Returns a
[before, after]tuple.