bandwidth_patch.rb

1# frozen_string_literal: true
2
3module URI
4	unless respond_to?(:escape)
5		def self.escape(*args, **kwargs)
6			URI::DEFAULT_PARSER.escape(*args, **kwargs)
7		end
8	end
9end