1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
| cordova.define('cordova/plugin_list', function(require, exports, module) {
| module.exports = [
| {
| "id": "phonegap-plugin-barcodescanner.BarcodeScanner",
| "file": "plugins/phonegap-plugin-barcodescanner/www/barcodescanner.js",
| "pluginId": "phonegap-plugin-barcodescanner",
| "clobbers": [
| "cordova.plugins.barcodeScanner"
| ]
| }
| ];
| module.exports.metadata = {
| "cordova-plugin-whitelist": "1.3.4",
| "phonegap-plugin-barcodescanner": "8.1.0"
| };
| });
|
|