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

rdf-parse

Package Overview
Dependencies
Maintainers
1
Versions
28
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

rdf-parse - npm Package Compare versions

Comparing version 1.6.0 to 1.6.1

6

CHANGELOG.md
# Changelog
All notable changes to this project will be documented in this file.
<a name="v1.6.1"></a>
## [v1.6.1](https://github.com/rubensworks/rdf-parse.js/compare/v1.6.0...v1.6.1) - 2020-11-12
### Fixed
* [Fix backpressuring not being maintained](https://github.com/rubensworks/rdf-parse.js/commit/269c757935c54b388e1bde076dc29c2afc2e8e7b)
<a name="v1.6.0"></a>

@@ -5,0 +11,0 @@ ## [v1.6.0](https://github.com/rubensworks/rdf-parse.js/compare/v1.5.0...v1.6.0) - 2020-11-03

8

lib/RdfParser.js

@@ -62,6 +62,3 @@ "use strict";

// Create a new readable
const readable = new stream_1.Readable({ objectMode: true });
readable._read = () => {
return;
};
const readable = new stream_1.PassThrough({ objectMode: true });
// Delegate parsing to the mediator

@@ -76,4 +73,3 @@ this.mediatorRdfParseHandle.mediate({

quads.on('error', (e) => readable.emit('error', e));
quads.on('data', (quad) => readable.push(quad));
quads.on('end', () => readable.push(null));
quads.pipe(readable);
})

@@ -80,0 +76,0 @@ .catch((e) => readable.emit('error', e));

{
"name": "rdf-parse",
"version": "1.6.0",
"version": "1.6.1",
"description": "Parses RDF from any serialization",

@@ -5,0 +5,0 @@ "lsd:module": "https://linkedsoftwaredependencies.org/bundles/npm/rdf-parse",

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