Skip to content

Instantly share code, notes, and snippets.

@srhyne
Last active September 2, 2016 20:15
Show Gist options
  • Save srhyne/3e8ab00c3a8526b3a1c9836bf8b97bf0 to your computer and use it in GitHub Desktop.
Save srhyne/3e8ab00c3a8526b3a1c9836bf8b97bf0 to your computer and use it in GitHub Desktop.
var items = input.your_string_array.split("\n\n").map(function(i){
var _i = {};
i.split("\n").forEach(function(kv){
kv = kv.split(':');
_i[kv[0].trim()] = kv[1].trim();
});
return _i;
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment