Method: Browser::HTTP::Headers#merge!
- Defined in:
- opal/browser/http/headers.rb
#merge!(other) ⇒ self
Merge in place other headers.
94 95 96 97 98 99 100 |
# File 'opal/browser/http/headers.rb', line 94 def merge!(other) other.each {|name, value| self[name] = value } self end |