# File lib/css_parser.rb, line 163
  def self.sanitize_media_query(raw)
    mq = raw.to_s.gsub(/[\s]+/, ' ')
    mq.strip!
    mq = 'all' if mq.empty?
    mq.to_sym
  end