Explorar el Código

linting and comment for readFileSync

d98762625 hace 6 años
padre
commit
367532cf8d
Se han modificado 2 ficheros con 7 adiciones y 2 borrados
  1. 7 1
      src/core/Utils.mjs
  2. 0 1
      src/core/dishTranslationTypes/DishListFile.mjs

+ 7 - 1
src/core/Utils.mjs

@@ -1027,7 +1027,13 @@ class Utils {
     }
 
     /**
-     * 
+     * Synchronously read the raw data from a File object.
+     *
+     * Only works in the Node environment
+     *
+     * @param {File} file - a File shim object (see src/node/File.mjs)
+     * @returns {ArrayBuffer} the data from the file in an ArrayBuffer
+     * @throws {TypeError} thrown if the method is called from a browser environment
      */
     static readFileSync(file) {
         if (!Utils.isNode()) {

+ 0 - 1
src/core/dishTranslationTypes/DishListFile.mjs

@@ -5,7 +5,6 @@
  */
 
 import DishTranslationType from "./DishTranslationType";
-import Utils from "../Utils";
 
 /**
  * Translation methods for ListFile Dishes