Method: Nokogiri::XML::Node#inner_text?
- Defined in:
- lib/ryoba/nokogiri/xml/node.rb
#inner_text? ⇒ String?
Equivalent to .content.strip
, but returns nil if the result is an empty string.
29 30 31 32 |
# File 'lib/ryoba/nokogiri/xml/node.rb', line 29 def content? result = self.content.strip result unless result.empty? end |