lib/backports/2.2.0/kernel/itself.rb



unless Kernel.method_defined? :itself
  module Kernel
    def itself
      self
    end
  end
end