n1474335 8 years ago
parent
commit
62154309fb
2 changed files with 3 additions and 2 deletions
  1. 1 2
      src/core/config/OperationConfig.js
  2. 2 0
      src/core/operations/Image.js

+ 1 - 2
src/core/config/OperationConfig.js

@@ -3348,8 +3348,7 @@ const OperationConfig = {
         run: Image.runEXIF,
         inputType: "byteArray",
         outputType: "string",
-        args: [
-        ],
+        args: [],
     },
 };
 

+ 2 - 0
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;