module SassC::URL

def path_to_file_url(path)

def path_to_file_url(path)
  return if path.nil?
  path = "/#{path}" unless path.start_with?('/')
  URI::File.build([nil, escape(path)]).to_s
end