New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

raptor-render-context

Package Overview
Dependencies
Maintainers
2
Versions
28
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

raptor-render-context - npm Package Compare versions

Comparing version 0.2.11-beta to 0.2.12-beta

23

lib/Context.js

@@ -179,16 +179,17 @@ /*

function Context(writer, attributes) {
this.attributes = attributes || {
events: new EventEmitter()
};
this.attributes = attributes || (attributes = {});
// Closing the underlying writer if this is a top-level context as indicated
// by the lack of pre-existing attributes
if (!attributes && writer && writer.end) {
this.on('end', function() {
writer.end();
});
if (!attributes.events) {
attributes.events = new EventEmitter();
}
if (!this.attributes.async) {
this.attributes.async = {
if (!attributes.async) {
if (writer && writer.end) {
this.on('end', function() {
writer.end();
});
}
attributes.async = {
remaining: 0,

@@ -195,0 +196,0 @@ ended: false,

@@ -29,3 +29,3 @@ {

},
"version": "0.2.11-beta"
"version": "0.2.12-beta"
}
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