codebakery-plugin-cellinfo
Advanced tools
Comparing version 0.0.9 to 0.0.10
{ | ||
"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
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
24869
17