Created
November 3, 2008 21:46
-
-
Save jakehow/21991 to your computer and use it in GitHub Desktop.
This file contains 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
class Array | |
def flatten | |
each_with_index do |object, index| | |
if object.kind_of?(Array) | |
delete_at(index) | |
insert(index, *object.flatten) | |
end | |
end | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment