import 'parsnip-ts/whitespace'
Matches one or more whitespace characters
whitespace.matches(' \r\n\t') // true
Matches zero or more whitespace characters
ws.matches(' \r\n\t') // true ws.matches('') // true
Generated using TypeDoc
Matches one or more whitespace characters
whitespace.matches(' \r\n\t') // true