class ActionController::Parameters

def transform_keys(&block)

results of running +block+ once for every key. The values are unchanged.
Returns a new +ActionController::Parameters+ instance with the
def transform_keys(&block)
  return to_enum(:transform_keys) unless block_given?
  new_instance_with_inherited_permitted_status(
    @parameters.transform_keys(&block)
  )
end