# File lib/liquid/standardfilters.rb, line 143
    def map(input, property)
      InputIterator.new(input).map do |e|
        e = e.call if e.is_a?(Proc)

        if property == "to_liquid".freeze
          e
        elsif e.respond_to?(:[])
          e[property]
        end
      end
    end