There's no documentation for this item.
Source Code
# File action_controller/vendor/html-scanner/html/node.rb, line 47 def keys_to_symbols(hash) hash.keys.inject({}) do |h,k| raise "illegal key #{k.inspect}" unless k.respond_to?(:to_sym) h[k.to_sym] = hash[k] h end end
<code/>and<pre/>for code samples.