Socket
Socket
Sign inDemoInstall

codebakery-plugin-cellinfo

Package Overview
Dependencies
Maintainers
1
Versions
11
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

codebakery-plugin-cellinfo - npm Package Compare versions

Comparing version 0.0.9 to 0.0.10

2

package.json
{
"name": "codebakery-plugin-cellinfo",
"version": "0.0.9",
"version": "0.0.10",
"cordova": {

@@ -5,0 +5,0 @@ "id": "codebakery-plugin-cellinfo",

var argscheck = require('cordova/argscheck');
var exec = require('cordova/exec');
if (platform.id === 'android') {
var CellInfo = function() {
};
var CellInfo = function() {
};
CellInfo.getNeighboringCellInfo = function(successCallback, errorCallback) {
argscheck.checkArgs('fF', 'CellInfo.getNeighboringCellInfo', arguments);
exec(successCallback, errorCallback, 'CellInfo', 'getNeighboringCellInfo', []);
};
CellInfo.getNeighboringCellInfo = function(successCallback, errorCallback) {
argscheck.checkArgs('fF', 'CellInfo.getNeighboringCellInfo', arguments);
exec(successCallback, errorCallback, 'CellInfo', 'getNeighboringCellInfo', []);
};
CellInfo.getPrimaryCellInfo = function(successCallback, errorCallback) {
argscheck.checkArgs('fF', 'CellInfo.getPrimaryCellInfo', arguments);
exec(successCallback, errorCallback, 'CellInfo', 'getPrimaryCellInfo', []);
};
} else {
var CellInfo = false;
}
CellInfo.getPrimaryCellInfo = function(successCallback, errorCallback) {
argscheck.checkArgs('fF', 'CellInfo.getPrimaryCellInfo', arguments);
exec(successCallback, errorCallback, 'CellInfo', 'getPrimaryCellInfo', []);
};
module.exports = CellInfo;

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