Splits a string or an array of strings (recursively) by whitespace.
splitWhitespace('a b c'); // ['a', 'b', 'c']splitWhitespace(['a b', 'c']); // ['a', 'b', 'c']splitWhitespace(['a ', ['b', ['c d']]]); // ['a', 'b', 'c', 'd'] Copy
splitWhitespace('a b c'); // ['a', 'b', 'c']splitWhitespace(['a b', 'c']); // ['a', 'b', 'c']splitWhitespace(['a ', ['b', ['c d']]]); // ['a', 'b', 'c', 'd']
Splits a string or an array of strings (recursively) by whitespace.