Socket
Socket
Sign inDemoInstall

adbkit

Package Overview
Dependencies
8
Maintainers
1
Versions
64
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 1.0.5 to 1.0.6

6

lib/adb/client.js

@@ -305,2 +305,5 @@ (function() {

return this.syncService(serial, function(err, sync) {
if (err) {
return callback(err);
}
return callback(null, new ProcStat(sync));

@@ -315,2 +318,5 @@ });

return this.push(serial, apk, temp, function(err, transfer) {
if (err) {
return callback(err);
}
return transfer.on('end', function() {

@@ -317,0 +323,0 @@ return _this.transport(serial, function(err, transport) {

@@ -45,2 +45,9 @@ (function() {

LineTransform.prototype._flush = function(done) {
if (this.savedR) {
this.push(this.savedR);
}
return done();
};
return LineTransform;

@@ -47,0 +54,0 @@

2

package.json
{
"name": "adbkit",
"version": "1.0.5",
"version": "1.0.6",
"description": "A pure Node.js client for the Android Debug Bridge.",

@@ -5,0 +5,0 @@ "keywords": [

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc