Class: HTTP::Security::Parsers::Parser::Transform

Inherits:
Parslet::Transform
  • Object
show all
Defined in:
lib/http/security/parsers/parser.rb

Constant Summary collapse

ESCAPED_CHARS =
{
  '0' => "\0",
  'a' => "\a",
  'b' => "\b",
  't' => "\t",
  'n' => "\n",
  'v' => "\v",
  'f' => "\f",
  'r' => "\r"
}