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.1.3 to 1.1.4

7

lib/adb/command/host-transport/shell.js

@@ -41,3 +41,8 @@ (function() {

ShellCommand.prototype._escapeArg = function(arg) {
return "'" + arg.replace(RE_SQUOT, "'\"'\"'") + "'";
switch (typeof arg) {
case 'number':
return arg;
default:
return "'" + arg.toString().replace(RE_SQUOT, "'\"'\"'") + "'";
}
};

@@ -44,0 +49,0 @@

2

package.json
{
"name": "adbkit",
"version": "1.1.3",
"version": "1.1.4",
"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