Split a string into an array of its words.
Returns the words array.
words('lord of the rings')// ['lord', 'of', 'the', 'rings']
The string to split
Optional
The pattern to match words
Generated using TypeDoc
Split a string into an array of its words.
Returns
Returns the words array.
Example