module SassC::Util

def file_url_to_path(url)

def file_url_to_path(url)
  return if url.nil?
  path = URI_PARSER.unescape(URI.parse(url).path)
  path = path[1..] if Gem.win_platform? && path[0].chr == '/' && path[1].chr =~ /[a-z]/i && path[2].chr == ':'
  path
end