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