module Roda::RodaPlugins::TypecastParams::StringStripper
Private Instance Methods
Source
# File lib/roda/plugins/typecast_params.rb, line 415 def param_value(key) v = super if v.is_a?(String) v = v.strip end v end
Strip any resulting input string.
Calls superclass method