diff --git a/src/core/config/OperationConfig.js b/src/core/config/OperationConfig.js index e21aeba3..f7d24f09 100755 --- a/src/core/config/OperationConfig.js +++ b/src/core/config/OperationConfig.js @@ -3348,8 +3348,7 @@ const OperationConfig = { run: Image.runEXIF, inputType: "byteArray", outputType: "string", - args: [ - ], + args: [], }, }; diff --git a/src/core/operations/Image.js b/src/core/operations/Image.js index 00749f40..e5dc2a9c 100644 --- a/src/core/operations/Image.js +++ b/src/core/operations/Image.js @@ -12,6 +12,7 @@ import Utils from "../Utils.js"; * @namespace */ const Image = { + /** * Extract EXIF operation. * @@ -40,6 +41,7 @@ const Image = { throw "Could not extract EXIF data from image: " + err; } }, + }; export default Image;