(char: string)
| 829 | * Check if a character is whitespace. |
| 830 | */ |
| 831 | export function isWhitespaceChar(char: string): boolean { |
| 832 | return /\s/.test(char); |
| 833 | } |
| 834 | |
| 835 | /** |
| 836 | * Check if a character is punctuation. |
no outgoing calls
no test coverage detected