Method: HttpHelper.append_key
- Defined in:
- lib/unit/utils/http_helper.rb
.append_key(root_key, key) ⇒ Object
67 68 69 |
# File 'lib/unit/utils/http_helper.rb', line 67 def self.append_key(root_key, key) root_key.nil? ? key : "#{root_key}[#{key}]" end |