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

parse5

Package Overview
Dependencies
Maintainers
1
Versions
58
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

parse5 - npm Package Compare versions

Comparing version 2.1.2 to 2.1.3

12

lib/parser/stream.js

@@ -127,5 +127,15 @@ 'use strict';

*/
this.emit('script', scriptElement, this._documentWrite, this._resume);
var parser = this;
// NOTE: emit `script` on next tick so we let parsing
// loop stop spinning due to `pausedByScript` flag.
// This helps avoid reentrant invocation of parsing loop
// in cases then `resume` called synchronously
// (see: https://github.com/inikulin/parse5/issues/98).
process.nextTick(function () {
parser.emit('script', scriptElement, parser._documentWrite, parser._resume);
});
}
};

2

package.json
{
"name": "parse5",
"description": "WHATWG HTML5 specification-compliant, fast and ready for production HTML parsing/serialization toolset for Node.js",
"version": "2.1.2",
"version": "2.1.3",
"author": "Ivan Nikulin <ifaaan@gmail.com> (https://github.com/inikulin)",

@@ -6,0 +6,0 @@ "contributors": [

Sorry, the diff of this file is too big to display

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