# File lib/puppet/util/methodhelper.rb, line 22 22: def symbolize_options(options) 23: options.inject({}) do |hash, opts| 24: if opts[0].respond_to? :intern 25: hash[opts[0].intern] = opts[1] 26: else 27: hash[opts[0]] = opts[1] 28: end 29: hash 30: end 31: end