Last active
May 31, 2016 16:17
-
-
Save reharik/5112944eaa37a3695dbad7380a6c65ee to your computer and use it in GitHub Desktop.
This file contains hidden or 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
[ | |
{ day:'wednesday', | |
events: [{ | |
time: "7:00 AM", | |
task: 'do something'} | |
]}, | |
{ day:'wednesday', | |
events: [{ | |
time: "8:00 AM", | |
taks : 'do something'} | |
]}, | |
{ day:'thursday', | |
events: [{ | |
time: "7:00 AM", | |
task : 'do something else'} | |
]}, | |
{ day:'friday', | |
events: [{ | |
time: "7:00 AM", | |
task : 'do something'} | |
]}, | |
] | |
transform to -> | |
[ | |
{ time:"7:00 Am", | |
task: :"do something", | |
days: ["wednesday","friday"] | |
} | |
{ time:"7:00 Am", | |
task: :"do something else", | |
days: ["thursday"] | |
}, | |
{ | |
time:"8:00 AM", | |
task:"do something", | |
days: ["Wednesday"] | |
} | |
] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment