Options
All
  • Public
  • Public/Protected
  • All
Menu

Index

Variables

Variables

Const whitespace

whitespace: Parser<string>

Matches one or more whitespace characters

whitespace.matches(' \r\n\t') // true

Const ws

ws: Parser<string>

Matches zero or more whitespace characters

ws.matches(' \r\n\t') // true
ws.matches('') // true

Generated using TypeDoc