Skip to content

Instantly share code, notes, and snippets.

@robermorales
Created August 4, 2016 13:14
Show Gist options
  • Select an option

  • Save robermorales/93d244c95f19c4d0a2459709ce4eb549 to your computer and use it in GitHub Desktop.

Select an option

Save robermorales/93d244c95f19c4d0a2459709ce4eb549 to your computer and use it in GitHub Desktop.
#!/usr/bin/env ruby
class Array
def flat
inject [] do |memo, current|
if current.kind_of? Array
memo += current.flat
else
memo << current
end
end
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment