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

com.mutualmobile.cordova.bluetoothle

Package Overview
Dependencies
Maintainers
2
Versions
9
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

com.mutualmobile.cordova.bluetoothle - npm Package Compare versions

Comparing version 1.0.8 to 1.1.0

2

package.json
{
"name": "com.mutualmobile.cordova.bluetoothle",
"version": "1.0.8",
"version": "1.1.0",
"description": "Connect with devices using Bluetooth Low Energy communication",

@@ -5,0 +5,0 @@ "cordova": {

@@ -107,4 +107,13 @@ // cordova.define("com.mutualmobile.cordova.bluetoothle.BluetoothLe", function(require, exports, module) {

},
startDiscovery: function() {
return exec('startDiscovery');
startDiscovery: function(uuids) {
var args;
if (isIos) {
args = [{
serviceUuids: uuids
}];
}
else {
args = [uuids];
}
return exec('startDiscovery', args);
},

@@ -111,0 +120,0 @@ stopDiscovery: function() {

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

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