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

async-writer

Package Overview
Dependencies
Maintainers
2
Versions
31
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

async-writer - npm Package Compare versions

Comparing version 1.3.4 to 1.3.5

21

lib/AsyncWriter.js

@@ -365,3 +365,3 @@ /*

this.emit('beginAsync', {
this._events.emit('beginAsync', {
writer: this,

@@ -401,5 +401,16 @@ parentWriter: parent

emit: function() {
emit: function(arg) {
var events = this._events;
events.emit.apply(events, arguments);
switch(arguments.length) {
case 0:
events.emit();
break;
case 1:
events.emit(arg);
break;
default:
events.emit.apply(events, arguments);
break;
}
return this;

@@ -471,3 +482,3 @@ },

async.last = 0;
this.emit('last');
this._events.emit('last');
}

@@ -486,3 +497,3 @@

} else {
this.emit('finish');
this._events.emit('finish');
}

@@ -489,0 +500,0 @@ },

@@ -27,3 +27,3 @@ {

},
"version": "1.3.4"
"version": "1.3.5"
}
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