Version: 0.4.0
space
space
Parse a single space character.
function space() : Parser
tab
Parse a single tab character.
function tab() : Parser
blank
Parse a space or tab.
function blank() : Parser
whitespace
Parse a space character, and \t, \n, \r, \f, \v.
function whitespace() : Parser
newline
Parse a newline character.
function newline() : Parser
crlf
Parse a carriage return character and a newline character. Return the two characters. {\r\n}
function crlf() : Parser
eol
Parse a newline or a crlf.
function eol() : Parser
skipSpace
Skip zero or more white space characters.
function skipSpace() : Parser
skipHSpace
Like 'skipSpace', but does not accept newlines and carriage returns.
function skipHSpace() : Parser
skipSpace1
Skip one or more white space characters.
function skipSpace1() : Parser
skipHSpace1
Like 'skipSpace1', but does not accept newlines and carriage returns.
function skipHSpace1() : Parser