# File lib/easy_diff/safe_dup.rb, line 3
    def safe_dup
      begin
        self.dup
      rescue TypeError
        self
      end
    end