Splits and flattens a list of strings based on a separator.
Array of strings to split and flatten.
Separator to use for splitting.
Flattened and splitted array of strings.
splitAndFlat(['tag1 tag2', 'tag2'], ' ');// => ['tag1', 'tag2'] Copy
splitAndFlat(['tag1 tag2', 'tag2'], ' ');// => ['tag1', 'tag2']
Splits and flattens a list of strings based on a separator.