Flowdock
method

stringify_array

Importance_0
v5.1.7 - Show latest stable - 0 notes - Class: ActionDispatch::Flash::FlashHash
stringify_array(array) private

No documentation

This method has no description. You can help the Ruby on Rails community by adding new notes.

Hide source
# File actionpack/lib/action_dispatch/middleware/flash.rb, line 285
        def stringify_array(array) # :doc:
          array.map do |item|
            item.kind_of?(Symbol) ? item.to_s : item
          end
        end
Register or log in to add new notes.