NOTE: this splits a string value into an array of strings by using a
delimiter of a comma if the string is only one line. However, if the
string has multiple lines, the delimiter will not be applied. This is so
that for an example input of multiple lines like
One, Comma in One
Two
Three
will still equal 3 elements (['One, Comma in One', 'Two', 'Three']) rather than 4
NOTE: this splits a string value into an array of strings by using a delimiter of a comma if the string is only one line. However, if the string has multiple lines, the delimiter will not be applied. This is so that for an example input of multiple lines like One, Comma in One Two Three will still equal 3 elements (['One, Comma in One', 'Two', 'Three']) rather than 4