DEBSOURCES
Skip Quicknav
sources / ruby-libxml / 5.0.5-2 / lib / libxml / attributes.rb
1234567891011121314
# encoding: UTF-8 module LibXML module XML class Attributes def to_h inject({}) do |hash, attr| hash[attr.name] = attr.value hash end end end end end