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 e76ce5a commit 8c730e8Copy full SHA for 8c730e8
bin/helpers/hashUtil.js
@@ -38,7 +38,7 @@ const batchHashFile = (fileBatch) => {
38
files = files.map((batch) => {
39
return (res) => Promise.all(batch.map(hashFile)).then((data) => res.concat(data));
40
});
41
- hash = files.reduce((acc, curr) => acc.then(curr), Promise.resolve([]));
+ let hash = files.reduce((acc, curr) => acc.then(curr), Promise.resolve([]));
42
return hash;
43
44
};
0 commit comments