module SassC::Uri

def file_url_to_path(url)

def file_url_to_path(url)
  path = decode_uri_component(parse(url).path)
  if path.start_with?('/')
    windows_path = path[1..]
    path = windows_path if File.absolute_path?(windows_path)
  end
  path
end