module Geocoder

def blank_query?(value)


Is the given search query blank? (ie, should we not bother searching?)
#
def blank_query?(value)
  !!value.to_s.match(/^\s*$/)
end