11 12 13 14 15 16 17
# File 'lib/miam/utils.rb', line 11 def bytesize(str) if str.respond_to?(:bytesize) str.bytesize else str.length end end