Skip to content

Instantly share code, notes, and snippets.

@kroegen
Created August 1, 2016 12:41
Show Gist options
  • Save kroegen/36ee6d16a4ee03fb185389605494db34 to your computer and use it in GitHub Desktop.
Save kroegen/36ee6d16a4ee03fb185389605494db34 to your computer and use it in GitHub Desktop.
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