module Chewy::Search::Parameters::StringStorage

Just a simple value storage, all the values are coerced to string.

Private Instance Methods

normalize(value) click to toggle source
# File lib/chewy/search/parameters/concerns/string_storage.rb, line 8
def normalize(value)
  value.to_s if value.present?
end