Module: Polyfill::V2_6::String
- Defined in:
- lib/polyfill/v2_6/string.rb
Instance Method Summary collapse
Instance Method Details
#split ⇒ Object
4 5 6 7 8 9 10 11 12 13 |
# File 'lib/polyfill/v2_6/string.rb', line 4 def split(*) result = super if block_given? result.each(&::Proc.new) self else result end end |