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.5.2 to 5.5.3

4

CHANGELOG.md
# Changelog
## Version 5.5.3
* ts: callback argument simplification
## Version 5.5.2

@@ -5,0 +9,0 @@

2

lib/es5/index.d.ts

@@ -11,3 +11,3 @@ /// <reference types="node" />

declare namespace stringify {
type Callback = (err?: null | Error, output?: string) => void
type Callback = (err: Error | undefined, output: string) => void
type RecordDelimiter = string | Buffer | 'auto' | 'unix' | 'mac' | 'windows' | 'ascii' | 'unicode'

@@ -14,0 +14,0 @@ type Cast<T> = (value: T, context: CastingContext) => string

@@ -11,3 +11,3 @@ /// <reference types="node" />

declare namespace stringify {
type Callback = (err?: null | Error, output?: string) => void
type Callback = (err: Error | undefined, output: string) => void
type RecordDelimiter = string | Buffer | 'auto' | 'unix' | 'mac' | 'windows' | 'ascii' | 'unicode'

@@ -14,0 +14,0 @@ type Cast<T> = (value: T, context: CastingContext) => string

{
"version": "5.5.2",
"version": "5.5.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