method
stringify_array
v6.0.0 -
Show latest stable
- Class:
ActionDispatch::Flash::FlashHash
stringify_array(array)private
No documentation available.
# File actionpack/lib/action_dispatch/middleware/flash.rb, line 287
def stringify_array(array) # :doc:
array.map do |item|
item.kind_of?(Symbol) ? item.to_s : item
end
end