Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

csv-string

Package Overview
Dependencies
Maintainers
1
Versions
43
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

csv-string - npm Package Compare versions

Comparing version 3.1.3 to 3.1.4

5

lib/csv.js

@@ -64,3 +64,6 @@ 'use strict';

sep = sep || exports.separator;
if (Array.isArray(input) && !Array.isArray(input[0])) {
if (Array.isArray(input) && input.length === 0) {
ret = exports.eol;
}
else if (Array.isArray(input) && !Array.isArray(input[0])) {
for (var loop = 0; loop < input.length; loop++) {

@@ -67,0 +70,0 @@ ret = reducer(input[loop], ret, sep, loop > 0);

2

package.json
{
"name": "csv-string",
"version": "3.1.3",
"version": "3.1.4",
"author": "Nicolas Thouvenin <nthouvenin@gmail.com>",

@@ -5,0 +5,0 @@ "contributors": [

const csv = require('.');
/*
const fs = require('fs');

@@ -20,2 +21,3 @@ const { createStream } = csv;

*/
console.dir(csv.stringify([]));
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