Last active
August 10, 2017 14:04
-
-
Save abarrak/082835db4161b699ee6478e693633400 to your computer and use it in GitHub Desktop.
Flattener
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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