quotedFieldChar method

Parser<String> quotedFieldChar()

Implementation

Parser<String> quotedFieldChar() => [
  seq2(char(escapeChar), any()).map2((_, char) => char),
  pattern('^$quoteChar'),
].toChoiceParser();