From 62154309fba6dc15137c4fef287ba2882b14bc5a Mon Sep 17 00:00:00 2001 From: n1474335 Date: Sat, 13 May 2017 16:08:14 +0100 Subject: [PATCH] Newlines --- src/core/config/OperationConfig.js | 3 +-- src/core/operations/Image.js | 2 ++ 2 files changed, 3 insertions(+), 2 deletions(-) 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;