Skip to content

Instantly share code, notes, and snippets.

@piotrlo
Forked from iceener/array-to-csv.js
Created May 27, 2020 08:44
Show Gist options
  • Save piotrlo/2fc10b16def99033679648e36aff5070 to your computer and use it in GitHub Desktop.
Save piotrlo/2fc10b16def99033679648e36aff5070 to your computer and use it in GitHub Desktop.
// Array to CSV data
const csvContent = result.map(e => e.join(",")).join("\n");
copy(csvContent)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment