Method: Bayeux#content_string
- Defined in:
- lib/bayeux/bayeux.rb
#content_string(first, last) ⇒ Object
Helper functions
344 345 346 347 348 349 350 |
# File 'lib/bayeux/bayeux.rb', line 344 def content_string(first, last) unless first.nil? or last.nil? then return @content[first, (last - first)] else return "" end end |