Skip to content

Instantly share code, notes, and snippets.

@devbyray
Created September 15, 2022 07:51
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 devbyray/3e9f85a2f67ac62312d189f3dd00c140 to your computer and use it in GitHub Desktop.
Save devbyray/3e9f85a2f67ac62312d189f3dd00c140 to your computer and use it in GitHub Desktop.
function csvToArr(stringValue) {
// Add logic
const [keys, ...rest] = stringValue.trim().split('\n');
console.log('CSV keys: ', keys);
console.log('CSV values: ', rest);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment