Skip to content

Instantly share code, notes, and snippets.

@imsarvesh
Created January 23, 2018 09:11
Show Gist options
  • Save imsarvesh/15d59a7d01af3f0f5aa672293e3befb5 to your computer and use it in GitHub Desktop.
Save imsarvesh/15d59a7d01af3f0f5aa672293e3befb5 to your computer and use it in GitHub Desktop.
function email2csv(str){
str.split(';').map(e => e.substr(0,e.length-1).split('<').map(i=>i.trim()).join(',')).join('\n')
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment