# File lib/compass/sass_extensions/functions/cross_browser_support.rb, line 30 def prefixed(prefix, *args) aspect = prefix.value.sub(/^-/,"") needed = args.any?{|a| a.respond_to?(:supports?) && a.supports?(aspect)} Sass::Script::Bool.new(needed) end