dep(dev)!: bump @cordova/eslint-config@5.0.0 (#846)

* dep(dev)!: bump @cordova/eslint-config@5.0.0
* chore: apply automatic lint fix
This commit is contained in:
エリス
2023-08-18 00:59:25 +09:00
committed by GitHub
parent c2eb21d201
commit 61a6e9bb44
9 changed files with 2067 additions and 2039 deletions
+3 -3
View File
@@ -19,7 +19,7 @@
*
*/
var exec = require('cordova/exec');
const exec = require('cordova/exec');
/**
* @namespace navigator
@@ -48,7 +48,7 @@ var exec = require('cordova/exec');
* }
* @module CameraPopoverHandle
*/
var CameraPopoverHandle = function () {
const CameraPopoverHandle = function () {
/**
* Can be used to reposition the image selection dialog,
* for example, when the device orientation changes.
@@ -58,7 +58,7 @@ var CameraPopoverHandle = function () {
* @param {module:CameraPopoverOptions} popoverOptions
*/
this.setPosition = function (popoverOptions) {
var args = [popoverOptions];
const args = [popoverOptions];
exec(null, null, 'Camera', 'repositionPopover', args);
};
};