Checks if a string is comma-separated, i.e., contains one or more commas.
isCommaSepareted("one, two, three")// => true isCommaSepareted("one")// => falseisCommaSepareted("one two three")// => false Copy
isCommaSepareted("one, two, three")// => true isCommaSepareted("one")// => falseisCommaSepareted("one two three")// => false
The string to check for comma-separated format.
A boolean value indicating whether the input string is comma-separated (true) or not (false).
Generated using TypeDoc v0.24.7
Checks if a string is comma-separated, i.e., contains one or more commas.
Example