custom-fingerprint-plugin
Advanced tools
Comparing version 1.0.0 to 1.0.1
{ | ||
"name": "custom-fingerprint-plugin", | ||
"version": "1.0.0", | ||
"version": "1.0.1", | ||
"description": "Plugin to access external fingerprint scanning hardware device", | ||
@@ -5,0 +5,0 @@ "cordova": { |
@@ -5,9 +5,13 @@ var exec =require('cordova/exec'); | ||
var FingerPrintScannerPlugin={ | ||
echo:function(phrase,cb){ | ||
exec(cb,null,PLUGIN_NAME,'echo',[phrase]); | ||
} | ||
var FingerPrintScannerPlugin=function(){ | ||
} | ||
/** | ||
**@successCb is the success callback get called when plugin action is successful | ||
**@failureCb is the failure callback get called when plugin action is failed | ||
**/ | ||
FingerPrintScannerPlugin.scan=function(successCb,failureCb){ | ||
exec(successCb,failureCb,PLUGIN_NAME,'scan',[]); | ||
} | ||
module.exports=FingerPrintScannerPlugin |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Native code
Supply chain riskContains native code (e.g., compiled binaries or shared libraries). Including native code can obscure malicious behavior.
Found 1 instance in 1 package
Major refactor
Supply chain riskPackage has recently undergone a major refactor. It may be unstable or indicate significant internal changes. Use caution when updating to versions that include significant changes.
Found 1 instance in 1 package
6180078
43
471
21