class Lookbook::SearchParamParser

def call

def call
  json = CGI.unescape(str)
  JsonParser.call(json)
end

def initialize(str)

def initialize(str)
  @str = str.to_s.strip
end