Skip to content

Instantly share code, notes, and snippets.

@abarrak
Last active August 10, 2017 14:04
Show Gist options
  • Save abarrak/082835db4161b699ee6478e693633400 to your computer and use it in GitHub Desktop.
Save abarrak/082835db4161b699ee6478e693633400 to your computer and use it in GitHub Desktop.
Flattener
# https://stackoverflow.com/a/35963024
module Flattener
def deep_flatten
flatten.map do |item|
case item
when Hash, Array
item.deep_flatten
else
item
end
end.flatten
end
end
class Hash
include Flattener
end
class Array
include Flattener
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment