We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e301ee9 commit ead8187Copy full SHA for ead8187
from.js
@@ -7,7 +7,7 @@ import Blob from './index.js';
7
* @param {string} path filepath on the disk
8
* @returns {Blob}
9
*/
10
-const blobFromSync = path => from(statSync(path), path);
+ const blobFromSync = path => from(statSync(path), path);
11
12
/**
13
@@ -29,7 +29,7 @@ const from = (stat, path) => new Blob([new BlobDataItem({
29
*
30
* @private
31
32
-export default class BlobDataItem {
+class BlobDataItem {
33
#path;
34
#start;
35
@@ -71,4 +71,5 @@ export default class BlobDataItem {
71
}
72
73
74
+export default blobFromSync;
75
export {Blob, blobFrom, blobFromSync};
0 commit comments