File: bytesize.rb

package info (click to toggle)
ruby-em-http-request 1.1.2-2
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 628 kB
  • ctags: 243
  • sloc: ruby: 3,478; makefile: 2
file content (6 lines) | stat: -rw-r--r-- 121 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
# bytesize was introduced in 1.8.7+
if RUBY_VERSION <= "1.8.6"
  class String
    def bytesize; self.size; end
  end
end