Created
August 1, 2016 12:41
-
-
Save kroegen/36ee6d16a4ee03fb185389605494db34 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
function (text) { | |
return text.split('\n\n').map(rawFilm =>{ | |
const data = rawFilm.split('\n').map(field => field.split(': ')); | |
console.log(data) | |
return { | |
Title: data[1], | |
Year: data[3], | |
Format: data[5], | |
Stars: data[7] | |
} | |
}) | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment