somleng/somleng

View on GitHub
lib/twiml_parser/node.rb

Summary

Maintainability
A
0 mins
Test Coverage
module TwiMLParser
  Node = Struct.new(:attributes, :name, :text?, :children, :content, keyword_init: true) do
    def to_s
      content
    end
  end
end