@measurequick/measurequick-report-generator 1.2.145 → 1.2.147

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/util.js CHANGED
@@ -815,3 +815,18 @@ function prettifyData(val, type, units) {
815
815
  else if (!val || isNaN(val) || !isFinite(val)) response = '--';
816
816
  return response;
817
817
  }
818
+
819
+ // export function loadFile() {
820
+ //
821
+ //
822
+ //
823
+ // const reader = new FileReader();
824
+ //
825
+ // reader.addEventListener("load", () => {
826
+ // return reader.result;
827
+ // }, false);
828
+ //
829
+ // if (file) {
830
+ // reader.readAsDataURL(file);
831
+ // }
832
+ // }