module Typhoeus::Request::Before

def run

Other tags:
    Example: Run the request. -
def run
  Typhoeus.before.each do |callback|
    value = callback.call(self)
    if value.nil? || value == false || value.is_a?(Response)
      return response
    end
  end
  super
end