module SassC::Uri

def path_to_file_url(path)

def path_to_file_url(path)
  path = "/#{path}" unless path.start_with?('/')
  "file://#{encode_uri_path_component(path)}"
end