# File lib/active_support/core_ext/string/access.rb, line 89
    def last(limit = 1)
      if limit == 0
        ''
      elsif limit >= size
        self
      else
        from(-limit)
      end
    end