WS top-level property

Parser<String> WS
final

161s WS ::= #x20 | #x9 | #xD | #xA /* #x20=space #x9=character tabulation #xD=carriage return #xA=new line */

Implementation

final WS = pattern('\x20\x09\x0D\x0A');