Skip to content

Instantly share code, notes, and snippets.

Created November 27, 2015 20:49
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save anonymous/91bc550218e0c0c5c508 to your computer and use it in GitHub Desktop.
Save anonymous/91bc550218e0c0c5c508 to your computer and use it in GitHub Desktop.
currently have:
{
"item1" => [
[0] "a"
],
"item2" => [
[0] "a",
[1] "b"
],
"item3" => [
[0] "a",
[1] "b",
[2] "c"
]
}
desired output:
item1 => "a"
item2 => "a|b"
item3 => "a|b|c"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment