Socket
Socket
Sign inDemoInstall

csv-stringify

Package Overview
Dependencies
Maintainers
1
Versions
84
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

csv-stringify - npm Package Compare versions

Comparing version 5.4.2 to 5.4.3

5

CHANGELOG.md
# Changelog
## Version 5.4.3
Fix:
* utils: wrongly declared variable in isSymbol
## Version 5.4.2

@@ -5,0 +10,0 @@

7

lib/es5/index.js

@@ -727,3 +727,3 @@ "use strict";

var _type = _typeof(argument);
var type = _typeof(argument);

@@ -734,3 +734,3 @@ if (data === undefined && Array.isArray(argument)) {

options = argument;
} else if (callback === undefined && _type === 'function') {
} else if (callback === undefined && type === 'function') {
callback = argument;

@@ -907,3 +907,4 @@ } else {

var isSymbol = function isSymbol(value) {
type = _typeof(value);
var type = _typeof(value);
return type === 'symbol' || type === 'object' && value && getTag(value) === '[object Symbol]';

@@ -910,0 +911,0 @@ };

@@ -580,3 +580,3 @@

const isSymbol = function(value){
type = typeof value
const type = typeof value
return type === 'symbol' || (type === 'object' && value && getTag(value) === '[object Symbol]')

@@ -583,0 +583,0 @@ }

{
"version": "5.4.2",
"version": "5.4.3",
"name": "csv-stringify",

@@ -4,0 +4,0 @@ "description": "CSV stringifier implementing the Node.js `stream.Transform` API",

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