Skip to content

Instantly share code, notes, and snippets.

@oieioi
Created June 2, 2014 03:31
Show Gist options
  • Save oieioi/ca061c59e1685c44519e to your computer and use it in GitHub Desktop.
Save oieioi/ca061c59e1685c44519e to your computer and use it in GitHub Desktop.
module.exports = buddy = (ary) ->
result = []
while ary.length
left = ary.shift()
right = ary.shift()
obj = {}
obj[left] = right
result.push obj
result
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment