Method: EventMachine::IMAP::Formatter#send_quoted_string
- Defined in:
- lib/em-imap/formatter.rb
#send_quoted_string(str) ⇒ Object
83 84 85 |
# File 'lib/em-imap/formatter.rb', line 83 def send_quoted_string(str) put_string('"' + str.gsub(/["\\]/n, "\\\\\\&") + '"') end |