scratch-storage 2.0.0 → 2.0.1
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/dist/node/scratch-storage.js +4 -2
- package/dist/node/scratch-storage.js.map +1 -1
- package/dist/web/scratch-storage.js +4 -2
- package/dist/web/scratch-storage.js.map +1 -1
- package/dist/web/scratch-storage.min.js +4 -2
- package/dist/web/scratch-storage.min.js.map +1 -1
- package/package.json +2 -2
- package/src/FetchWorkerTool.js +2 -1
|
@@ -3473,8 +3473,10 @@ var PrivateFetchWorkerTool = /*#__PURE__*/function () {
|
|
|
3473
3473
|
resolve: resolve,
|
|
3474
3474
|
reject: reject
|
|
3475
3475
|
};
|
|
3476
|
-
})
|
|
3477
|
-
|
|
3476
|
+
})
|
|
3477
|
+
/* eslint no-confusing-arrow: ["error", {"allowParens": true}] */
|
|
3478
|
+
.then(function (body) {
|
|
3479
|
+
return body ? new Uint8Array(body) : null;
|
|
3478
3480
|
});
|
|
3479
3481
|
}
|
|
3480
3482
|
/**
|