Skip to content

Instantly share code, notes, and snippets.

@mikehibm
Created August 9, 2018 23:01
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mikehibm/bff9620073dd58ff5093c6fcfae5cc3f to your computer and use it in GitHub Desktop.
Save mikehibm/bff9620073dd58ff5093c6fcfae5cc3f to your computer and use it in GitHub Desktop.
function mapCSVToArray(csv: string): string[][] {
return csv.split('\n').map((row) => row.split(','));
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment