Socket
Socket
Sign inDemoInstall

feedparser

Package Overview
Dependencies
Maintainers
1
Versions
100
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

feedparser - npm Package Compare versions

Comparing version 0.16.2 to 0.16.3

10

History.md
v0.16.2 / 2013-10-08
v0.16.3 / 2013-10-27
==================
* Merge remote-tracking branch 'PaulMougel/master'
* Updated readable side highWaterMark to be forward-compatible with node.
* Improved stream watermark and buffering.
* Reduced memory consumption.
v0.16.2 / 2013-10-08
==================
* Bump dependencies

@@ -6,0 +14,0 @@ * Merge pull request #75 from jcrugzz/request-depend

9

main.js

@@ -70,5 +70,5 @@ /**********************************************************************

if (!(this instanceof FeedParser)) return new FeedParser(options);
TransformStream.call(this, {
objectMode: true
});
TransformStream.call(this);
this._readableState.objectMode = true;
this._readableState.highWaterMark = 16; // max. # of output nodes buffered

@@ -102,3 +102,2 @@ this.init();

this.stack = [];
this.nodes = {};
this.xmlbase = [];

@@ -341,4 +340,2 @@ this.in_xhtml = false;

}
} else {
this.nodes = n;
}

@@ -345,0 +342,0 @@ };

@@ -5,3 +5,3 @@ {

"description": "Robust RSS Atom and RDF feed parsing using sax js",
"version": "0.16.2",
"version": "0.16.3",
"keywords": [

@@ -8,0 +8,0 @@ "rss",

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