Method: ActionController::Parameters#compact!
- Defined in:
- lib/action_controller/metal/strong_parameters.rb
#compact! ⇒ Object
Removes all nil values in place and returns self, or nil if no changes were made.
980 981 982 |
# File 'lib/action_controller/metal/strong_parameters.rb', line 980 def compact! self if @parameters.compact! end |