Socket
Socket
Sign inDemoInstall

csv-stringify

Package Overview
Dependencies
0
Maintainers
1
Versions
83
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 5.3.1 to 5.3.2

8

CHANGELOG.md
# Changelog
## Version 5.3.2
* columns: get on undefined objects, fix #97
## Version 5.3.1
* pacakge: latest dependencies
* package: latest dependencies
* package: replace npm ignore with file field
* project: fix license in package.json
* package: simplify pretest comamnd
* package: simplify pretest command

@@ -11,0 +15,0 @@ ## Version 5.3.0

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

while (object !== null && index < length) {
while (object != null && index < length) {
object = object[toKey(path[index++])];

@@ -806,0 +806,0 @@ }

@@ -626,3 +626,3 @@ // Generated by CoffeeScript 2.4.1

length = path.length;
while (object !== null && index < length) {
while ((object != null) && index < length) {
object = object[toKey(path[index++])];

@@ -629,0 +629,0 @@ }

{
"version": "5.3.1",
"version": "5.3.2",
"name": "csv-stringify",

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

[![Build Status](https://api.travis-ci.org/adaltas/node-csv-stringify.svg)](https://travis-ci.org/#!/adaltas/node-csv-stringify)
This package is a stringifier converting records into a CSV text and implementing the
Node.js [`stream.Transform` API](https://nodejs.org/api/stream.html). It also provides the easier synchronous and
callback-based APIs for conveniency. It is both extremely easy to use and
powerful. It was first released in 2010 and is tested against big data
sets by a large community.
This package is a stringifier converting records into a CSV text and
implementing the Node.js [`stream.Transform`
API](https://nodejs.org/api/stream.html). It also provides the easier
synchronous and callback-based APIs for conveniency. It is both extremely easy
to use and powerful. It was first released in 2010 and is tested against big
data sets by a large community.

@@ -45,10 +46,14 @@ ## Documentation

Tests are executed with mocha. To install it, run `npm install`
followed by `npm test`. It will install mocha and its dependencies in your
project "node_modules" directory and run the test suite. The tests run
against the CoffeeScript source files.
Tests are executed with mocha. To install it, run `npm install` followed by `npm
test`. It will install mocha and its dependencies in your project "node_modules"
directory and run the test suite. The tests run against the CoffeeScript source
files.
To generate the JavaScript files, run `npm run coffee`.
The test suite is run online with [Travis](https://travis-ci.org/#!/adaltas/node-csv-stringify). See the [Travis definition file](https://github.com/adaltas/node-csv-stringify/blob/master/.travis.yml) to view the tested Node.js version.
The test suite is run online with
[Travis](https://travis-ci.org/#!/adaltas/node-csv-stringify). See the [Travis
definition
file](https://github.com/adaltas/node-csv-stringify/blob/master/.travis.yml) to
view the tested Node.js version.

@@ -55,0 +60,0 @@ ## Contributors

SocketSocket SOC 2 Logo

Product

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

Packages

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc