aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/lib/active_support/core_ext/string/bytesize.rb
blob: ed051b921e0b72c3e5d2e3ee0720a95f3f437a9f (plain) (blame)
1
2
3
4
5
unless '1.9'.respond_to?(:bytesize)
  class String
    alias :bytesize :size
  end
end