stream-json
Advanced tools
Comparing version 1.9.0 to 1.9.1
@@ -193,9 +193,6 @@ 'use strict'; | ||
pump | ||
.start() | ||
.then( | ||
() => callback(), | ||
error => callback(error) | ||
) | ||
.finally(() => (this[kPump] = null)); | ||
pump.start().then( | ||
() => ((this[kPump] = null), callback()), | ||
error => ((this[kPump] = null), callback(error)) | ||
); | ||
} | ||
@@ -202,0 +199,0 @@ |
{ | ||
"name": "stream-json", | ||
"version": "1.9.0", | ||
"version": "1.9.1", | ||
"description": "stream-json is the micro-library of Node.js stream components for creating custom JSON processing pipelines with a minimal memory footprint. It can parse JSON files far exceeding available memory streaming individual primitives using a SAX-inspired API. Includes utilities to stream JSON database dumps.", | ||
@@ -5,0 +5,0 @@ "homepage": "http://github.com/uhop/stream-json", |
@@ -116,2 +116,3 @@ # stream-json [![NPM version][npm-image]][npm-url] | ||
* 1.9.1 *fixed a race condition in disassembler implementation. Thx, [Noam Okman](https://github.com/noamokman).* | ||
* 1.9.0 *fixed a slight deviation from the JSON standard. Thx [Peter Burns](https://github.com/rictic).* | ||
@@ -118,0 +119,0 @@ * 1.8.0 *added an option to indicate/ignore JSONL errors. Thx, [AK](https://github.com/ak--47).* |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
90323
129
2384