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