Class: ParameterSubstitution::Formatters::Trim

Inherits:
Base
  • Object
show all
Defined in:
lib/parameter_substitution/formatters/trim.rb

Class Method Summary collapse

Methods inherited from Base

encoding, has_parameters?, key, parse_duration

Class Method Details

.descriptionObject



4
5
6
# File 'lib/parameter_substitution/formatters/trim.rb', line 4

def self.description
  "Returns the input as a string with leading and trailing whitespace removed."
end

.format(value) ⇒ Object



8
9
10
# File 'lib/parameter_substitution/formatters/trim.rb', line 8

def self.format(value)
  value&.to_s&.strip
end