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.
@@ -3473,8 +3473,10 @@ var PrivateFetchWorkerTool = /*#__PURE__*/function () {
3473
3473
  resolve: resolve,
3474
3474
  reject: reject
3475
3475
  };
3476
- }).then(function (body) {
3477
- return new Uint8Array(body);
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
  /**