Signature: words(s: string) -> List<string>

Description: Splits on runs of whitespace; empty results dropped.

Parameters

Returns: List

Example

words("a  b\\tc")  // ["a","b","c"]