New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

export-2-csv

Package Overview
Dependencies
Maintainers
1
Versions
7
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

export-2-csv - npm Package Compare versions

Comparing version 1.0.0 to 1.0.1

4

index.js

@@ -9,3 +9,5 @@ // array = [

var csvRows = array.map(function (v) {
return v.join(',');
return v.map(function (v) {
return '"' + v + '"';
}).join(',');
});

@@ -12,0 +14,0 @@ var csvStr = csvRows.join('%0A');

{
"name": "export-2-csv",
"version": "1.0.0",
"version": "1.0.1",
"description": "export array to csv in browser",

@@ -5,0 +5,0 @@ "main": "index.js",

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc