Created
June 2, 2014 03:31
-
-
Save oieioi/ca061c59e1685c44519e 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
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