scratch-storage 3.0.0 → 3.0.2

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.
@@ -143,15 +143,23 @@ const setMetadata = (name, value) => {
143
143
  const unsetMetadata = name => {
144
144
  metadata.delete(name);
145
145
  };
146
+
147
+ /**
148
+ * Retrieve a named request metadata item.
149
+ * Only for use in tests. At the time of writing, used in scratch-vm tests.
150
+ * @param {RequestMetadata} name The name of the metadata item to retrieve.
151
+ * @returns {any} value The value of the metadata item, or `undefined` if it was not found.
152
+ */
153
+ const getMetadata = name => metadata.get(name);
146
154
  module.exports = {
147
155
  Headers: crossFetch.Headers,
148
156
  RequestMetadata,
149
157
  applyMetadata,
150
158
  scratchFetch,
151
159
  setMetadata,
152
- unsetMetadata
160
+ unsetMetadata,
161
+ getMetadata
153
162
  };
154
- if (false) {}
155
163
 
156
164
  /***/ }),
157
165
 
@@ -2271,27 +2279,39 @@ function BufferBigIntNotDefined () {
2271
2279
  /***/ }),
2272
2280
 
2273
2281
  /***/ 945:
2274
- /***/ (function(module, exports) {
2282
+ /***/ ((module, exports, __webpack_require__) => {
2275
2283
 
2276
- var global = typeof self !== 'undefined' ? self : this;
2277
- var __self__ = (function () {
2284
+ // Save global object in a variable
2285
+ var __global__ =
2286
+ (typeof globalThis !== 'undefined' && globalThis) ||
2287
+ (typeof self !== 'undefined' && self) ||
2288
+ (typeof __webpack_require__.g !== 'undefined' && __webpack_require__.g);
2289
+ // Create an object that extends from __global__ without the fetch function
2290
+ var __globalThis__ = (function () {
2278
2291
  function F() {
2279
2292
  this.fetch = false;
2280
- this.DOMException = global.DOMException
2293
+ this.DOMException = __global__.DOMException
2281
2294
  }
2282
- F.prototype = global;
2295
+ F.prototype = __global__; // Needed for feature detection on whatwg-fetch's code
2283
2296
  return new F();
2284
2297
  })();
2285
- (function(self) {
2298
+ // Wraps whatwg-fetch with a function scope to hijack the global object
2299
+ // "globalThis" that's going to be patched
2300
+ (function(globalThis) {
2286
2301
 
2287
2302
  var irrelevant = (function (exports) {
2288
2303
 
2304
+ var global =
2305
+ (typeof globalThis !== 'undefined' && globalThis) ||
2306
+ (typeof self !== 'undefined' && self) ||
2307
+ (typeof global !== 'undefined' && global);
2308
+
2289
2309
  var support = {
2290
- searchParams: 'URLSearchParams' in self,
2291
- iterable: 'Symbol' in self && 'iterator' in Symbol,
2310
+ searchParams: 'URLSearchParams' in global,
2311
+ iterable: 'Symbol' in global && 'iterator' in Symbol,
2292
2312
  blob:
2293
- 'FileReader' in self &&
2294
- 'Blob' in self &&
2313
+ 'FileReader' in global &&
2314
+ 'Blob' in global &&
2295
2315
  (function() {
2296
2316
  try {
2297
2317
  new Blob();
@@ -2300,8 +2320,8 @@ var irrelevant = (function (exports) {
2300
2320
  return false
2301
2321
  }
2302
2322
  })(),
2303
- formData: 'FormData' in self,
2304
- arrayBuffer: 'ArrayBuffer' in self
2323
+ formData: 'FormData' in global,
2324
+ arrayBuffer: 'ArrayBuffer' in global
2305
2325
  };
2306
2326
 
2307
2327
  function isDataView(obj) {
@@ -2332,8 +2352,8 @@ var irrelevant = (function (exports) {
2332
2352
  if (typeof name !== 'string') {
2333
2353
  name = String(name);
2334
2354
  }
2335
- if (/[^a-z0-9\-#$%&'*+.^_`|~]/i.test(name)) {
2336
- throw new TypeError('Invalid character in header field name')
2355
+ if (/[^a-z0-9\-#$%&'*+.^_`|~!]/i.test(name) || name === '') {
2356
+ throw new TypeError('Invalid character in header field name: "' + name + '"')
2337
2357
  }
2338
2358
  return name.toLowerCase()
2339
2359
  }
@@ -2497,6 +2517,17 @@ var irrelevant = (function (exports) {
2497
2517
  this.bodyUsed = false;
2498
2518
 
2499
2519
  this._initBody = function(body) {
2520
+ /*
2521
+ fetch-mock wraps the Response object in an ES6 Proxy to
2522
+ provide useful test harness features such as flush. However, on
2523
+ ES5 browsers without fetch or Proxy support pollyfills must be used;
2524
+ the proxy-pollyfill is unable to proxy an attribute unless it exists
2525
+ on the object before the Proxy is created. This change ensures
2526
+ Response.bodyUsed exists on the instance, while maintaining the
2527
+ semantic of setting Request.bodyUsed in the constructor before
2528
+ _initBody is called.
2529
+ */
2530
+ this.bodyUsed = this.bodyUsed;
2500
2531
  this._bodyInit = body;
2501
2532
  if (!body) {
2502
2533
  this._bodyText = '';
@@ -2549,7 +2580,20 @@ var irrelevant = (function (exports) {
2549
2580
 
2550
2581
  this.arrayBuffer = function() {
2551
2582
  if (this._bodyArrayBuffer) {
2552
- return consumed(this) || Promise.resolve(this._bodyArrayBuffer)
2583
+ var isConsumed = consumed(this);
2584
+ if (isConsumed) {
2585
+ return isConsumed
2586
+ }
2587
+ if (ArrayBuffer.isView(this._bodyArrayBuffer)) {
2588
+ return Promise.resolve(
2589
+ this._bodyArrayBuffer.buffer.slice(
2590
+ this._bodyArrayBuffer.byteOffset,
2591
+ this._bodyArrayBuffer.byteOffset + this._bodyArrayBuffer.byteLength
2592
+ )
2593
+ )
2594
+ } else {
2595
+ return Promise.resolve(this._bodyArrayBuffer)
2596
+ }
2553
2597
  } else {
2554
2598
  return this.blob().then(readBlobAsArrayBuffer)
2555
2599
  }
@@ -2595,6 +2639,10 @@ var irrelevant = (function (exports) {
2595
2639
  }
2596
2640
 
2597
2641
  function Request(input, options) {
2642
+ if (!(this instanceof Request)) {
2643
+ throw new TypeError('Please use the "new" operator, this DOM object constructor cannot be called as a function.')
2644
+ }
2645
+
2598
2646
  options = options || {};
2599
2647
  var body = options.body;
2600
2648
 
@@ -2631,6 +2679,21 @@ var irrelevant = (function (exports) {
2631
2679
  throw new TypeError('Body not allowed for GET or HEAD requests')
2632
2680
  }
2633
2681
  this._initBody(body);
2682
+
2683
+ if (this.method === 'GET' || this.method === 'HEAD') {
2684
+ if (options.cache === 'no-store' || options.cache === 'no-cache') {
2685
+ // Search for a '_' parameter in the query string
2686
+ var reParamSearch = /([?&])_=[^&]*/;
2687
+ if (reParamSearch.test(this.url)) {
2688
+ // If it already exists then set the value with the current time
2689
+ this.url = this.url.replace(reParamSearch, '$1_=' + new Date().getTime());
2690
+ } else {
2691
+ // Otherwise add a new '_' parameter to the end with the current time
2692
+ var reQueryString = /\?/;
2693
+ this.url += (reQueryString.test(this.url) ? '&' : '?') + '_=' + new Date().getTime();
2694
+ }
2695
+ }
2696
+ }
2634
2697
  }
2635
2698
 
2636
2699
  Request.prototype.clone = function() {
@@ -2658,20 +2721,31 @@ var irrelevant = (function (exports) {
2658
2721
  // Replace instances of \r\n and \n followed by at least one space or horizontal tab with a space
2659
2722
  // https://tools.ietf.org/html/rfc7230#section-3.2
2660
2723
  var preProcessedHeaders = rawHeaders.replace(/\r?\n[\t ]+/g, ' ');
2661
- preProcessedHeaders.split(/\r?\n/).forEach(function(line) {
2662
- var parts = line.split(':');
2663
- var key = parts.shift().trim();
2664
- if (key) {
2665
- var value = parts.join(':').trim();
2666
- headers.append(key, value);
2667
- }
2668
- });
2724
+ // Avoiding split via regex to work around a common IE11 bug with the core-js 3.6.0 regex polyfill
2725
+ // https://github.com/github/fetch/issues/748
2726
+ // https://github.com/zloirock/core-js/issues/751
2727
+ preProcessedHeaders
2728
+ .split('\r')
2729
+ .map(function(header) {
2730
+ return header.indexOf('\n') === 0 ? header.substr(1, header.length) : header
2731
+ })
2732
+ .forEach(function(line) {
2733
+ var parts = line.split(':');
2734
+ var key = parts.shift().trim();
2735
+ if (key) {
2736
+ var value = parts.join(':').trim();
2737
+ headers.append(key, value);
2738
+ }
2739
+ });
2669
2740
  return headers
2670
2741
  }
2671
2742
 
2672
2743
  Body.call(Request.prototype);
2673
2744
 
2674
2745
  function Response(bodyInit, options) {
2746
+ if (!(this instanceof Response)) {
2747
+ throw new TypeError('Please use the "new" operator, this DOM object constructor cannot be called as a function.')
2748
+ }
2675
2749
  if (!options) {
2676
2750
  options = {};
2677
2751
  }
@@ -2679,7 +2753,7 @@ var irrelevant = (function (exports) {
2679
2753
  this.type = 'default';
2680
2754
  this.status = options.status === undefined ? 200 : options.status;
2681
2755
  this.ok = this.status >= 200 && this.status < 300;
2682
- this.statusText = 'statusText' in options ? options.statusText : 'OK';
2756
+ this.statusText = options.statusText === undefined ? '' : '' + options.statusText;
2683
2757
  this.headers = new Headers(options.headers);
2684
2758
  this.url = options.url || '';
2685
2759
  this._initBody(bodyInit);
@@ -2712,7 +2786,7 @@ var irrelevant = (function (exports) {
2712
2786
  return new Response(null, {status: status, headers: {location: url}})
2713
2787
  };
2714
2788
 
2715
- exports.DOMException = self.DOMException;
2789
+ exports.DOMException = global.DOMException;
2716
2790
  try {
2717
2791
  new exports.DOMException();
2718
2792
  } catch (err) {
@@ -2748,22 +2822,38 @@ var irrelevant = (function (exports) {
2748
2822
  };
2749
2823
  options.url = 'responseURL' in xhr ? xhr.responseURL : options.headers.get('X-Request-URL');
2750
2824
  var body = 'response' in xhr ? xhr.response : xhr.responseText;
2751
- resolve(new Response(body, options));
2825
+ setTimeout(function() {
2826
+ resolve(new Response(body, options));
2827
+ }, 0);
2752
2828
  };
2753
2829
 
2754
2830
  xhr.onerror = function() {
2755
- reject(new TypeError('Network request failed'));
2831
+ setTimeout(function() {
2832
+ reject(new TypeError('Network request failed'));
2833
+ }, 0);
2756
2834
  };
2757
2835
 
2758
2836
  xhr.ontimeout = function() {
2759
- reject(new TypeError('Network request failed'));
2837
+ setTimeout(function() {
2838
+ reject(new TypeError('Network request failed'));
2839
+ }, 0);
2760
2840
  };
2761
2841
 
2762
2842
  xhr.onabort = function() {
2763
- reject(new exports.DOMException('Aborted', 'AbortError'));
2843
+ setTimeout(function() {
2844
+ reject(new exports.DOMException('Aborted', 'AbortError'));
2845
+ }, 0);
2764
2846
  };
2765
2847
 
2766
- xhr.open(request.method, request.url, true);
2848
+ function fixUrl(url) {
2849
+ try {
2850
+ return url === '' && global.location.href ? global.location.href : url
2851
+ } catch (e) {
2852
+ return url
2853
+ }
2854
+ }
2855
+
2856
+ xhr.open(request.method, fixUrl(request.url), true);
2767
2857
 
2768
2858
  if (request.credentials === 'include') {
2769
2859
  xhr.withCredentials = true;
@@ -2771,13 +2861,27 @@ var irrelevant = (function (exports) {
2771
2861
  xhr.withCredentials = false;
2772
2862
  }
2773
2863
 
2774
- if ('responseType' in xhr && support.blob) {
2775
- xhr.responseType = 'blob';
2864
+ if ('responseType' in xhr) {
2865
+ if (support.blob) {
2866
+ xhr.responseType = 'blob';
2867
+ } else if (
2868
+ support.arrayBuffer &&
2869
+ request.headers.get('Content-Type') &&
2870
+ request.headers.get('Content-Type').indexOf('application/octet-stream') !== -1
2871
+ ) {
2872
+ xhr.responseType = 'arraybuffer';
2873
+ }
2776
2874
  }
2777
2875
 
2778
- request.headers.forEach(function(value, name) {
2779
- xhr.setRequestHeader(name, value);
2780
- });
2876
+ if (init && typeof init.headers === 'object' && !(init.headers instanceof Headers)) {
2877
+ Object.getOwnPropertyNames(init.headers).forEach(function(name) {
2878
+ xhr.setRequestHeader(name, normalizeValue(init.headers[name]));
2879
+ });
2880
+ } else {
2881
+ request.headers.forEach(function(value, name) {
2882
+ xhr.setRequestHeader(name, value);
2883
+ });
2884
+ }
2781
2885
 
2782
2886
  if (request.signal) {
2783
2887
  request.signal.addEventListener('abort', abortXhr);
@@ -2796,11 +2900,11 @@ var irrelevant = (function (exports) {
2796
2900
 
2797
2901
  fetch.polyfill = true;
2798
2902
 
2799
- if (!self.fetch) {
2800
- self.fetch = fetch;
2801
- self.Headers = Headers;
2802
- self.Request = Request;
2803
- self.Response = Response;
2903
+ if (!global.fetch) {
2904
+ global.fetch = fetch;
2905
+ global.Headers = Headers;
2906
+ global.Request = Request;
2907
+ global.Response = Response;
2804
2908
  }
2805
2909
 
2806
2910
  exports.Headers = Headers;
@@ -2808,18 +2912,15 @@ var irrelevant = (function (exports) {
2808
2912
  exports.Response = Response;
2809
2913
  exports.fetch = fetch;
2810
2914
 
2811
- Object.defineProperty(exports, '__esModule', { value: true });
2812
-
2813
2915
  return exports;
2814
2916
 
2815
2917
  })({});
2816
- })(__self__);
2817
- __self__.fetch.ponyfill = true;
2818
- // Remove "polyfill" property added by whatwg-fetch
2819
- delete __self__.fetch.polyfill;
2820
- // Choose between native implementation (global) or custom implementation (__self__)
2821
- // var ctx = global.fetch ? global : __self__;
2822
- var ctx = __self__; // this line disable service worker support temporarily
2918
+ })(__globalThis__);
2919
+ // This is a ponyfill, so...
2920
+ __globalThis__.fetch.ponyfill = true;
2921
+ delete __globalThis__.fetch.polyfill;
2922
+ // Choose between native implementation (__global__) or custom implementation (__globalThis__)
2923
+ var ctx = __global__.fetch ? __global__ : __globalThis__;
2823
2924
  exports = ctx.fetch // To enable: import fetch from 'cross-fetch'
2824
2925
  exports["default"] = ctx.fetch // For TypeScript consumers without esModuleInterop.
2825
2926
  exports.fetch = ctx.fetch // To enable: import {fetch} from 'cross-fetch'
@@ -3518,9 +3619,6 @@ module.exports = require("base64-js");
3518
3619
  /******/ return module.exports;
3519
3620
  /******/ }
3520
3621
  /******/
3521
- /******/ // expose the modules object (__webpack_modules__)
3522
- /******/ __webpack_require__.m = __webpack_modules__;
3523
- /******/
3524
3622
  /************************************************************************/
3525
3623
  /******/ /* webpack/runtime/compat get default export */
3526
3624
  /******/ (() => {
@@ -3551,7 +3649,7 @@ module.exports = require("base64-js");
3551
3649
  /******/ // This function allow to reference async chunks
3552
3650
  /******/ __webpack_require__.u = (chunkId) => {
3553
3651
  /******/ // return url for filenames based on template
3554
- /******/ return "chunks/" + "fetch-worker" + "." + "eefe62e3c8ee125d3436" + ".js";
3652
+ /******/ return "chunks/" + "fetch-worker" + "." + "3bf90a691c26a60b5752" + ".js";
3555
3653
  /******/ };
3556
3654
  /******/ })();
3557
3655
  /******/
@@ -3588,30 +3686,9 @@ module.exports = require("base64-js");
3588
3686
  /******/ __webpack_require__.p = "/";
3589
3687
  /******/ })();
3590
3688
  /******/
3591
- /******/ /* webpack/runtime/jsonp chunk loading */
3689
+ /******/ /* webpack/runtime/base uri */
3592
3690
  /******/ (() => {
3593
- /******/ __webpack_require__.b = document.baseURI || self.location.href;
3594
- /******/
3595
- /******/ // object to store loaded and loading chunks
3596
- /******/ // undefined = chunk not loaded, null = chunk preloaded/prefetched
3597
- /******/ // [resolve, reject, Promise] = chunk loading, 0 = chunk loaded
3598
- /******/ var installedChunks = {
3599
- /******/ 139: 0
3600
- /******/ };
3601
- /******/
3602
- /******/ // no chunk on demand loading
3603
- /******/
3604
- /******/ // no prefetching
3605
- /******/
3606
- /******/ // no preloaded
3607
- /******/
3608
- /******/ // no HMR
3609
- /******/
3610
- /******/ // no HMR manifest
3611
- /******/
3612
- /******/ // no on chunks loaded
3613
- /******/
3614
- /******/ // no jsonp function
3691
+ /******/ __webpack_require__.b = undefined;
3615
3692
  /******/ })();
3616
3693
  /******/
3617
3694
  /************************************************************************/
@@ -3634,14 +3711,14 @@ __webpack_require__.d(__webpack_exports__, {
3634
3711
  // EXTERNAL MODULE: ./node_modules/minilog/lib/web/index.js
3635
3712
  var web = __webpack_require__(557);
3636
3713
  var web_default = /*#__PURE__*/__webpack_require__.n(web);
3637
- ;// CONCATENATED MODULE: ./src/log.ts
3714
+ ;// ./src/log.ts
3638
3715
 
3639
3716
  web_default().enable();
3640
3717
  /* harmony default export */ const log = (web_default()('storage'));
3641
- ;// CONCATENATED MODULE: external "js-md5"
3718
+ ;// external "js-md5"
3642
3719
  const external_js_md5_namespaceObject = require("js-md5");
3643
3720
  var external_js_md5_default = /*#__PURE__*/__webpack_require__.n(external_js_md5_namespaceObject);
3644
- ;// CONCATENATED MODULE: ./src/memoizedToString.ts
3721
+ ;// ./src/memoizedToString.ts
3645
3722
  // Use JS implemented TextDecoder and TextEncoder if it is not provided by the
3646
3723
  // browser.
3647
3724
  let _TextDecoder;
@@ -3714,7 +3791,7 @@ const memoizedToString = function () {
3714
3791
  };
3715
3792
  }();
3716
3793
 
3717
- ;// CONCATENATED MODULE: ./src/Asset.ts
3794
+ ;// ./src/Asset.ts
3718
3795
  function _defineProperty(e, r, t) { return (r = _toPropertyKey(r)) in e ? Object.defineProperty(e, r, { value: t, enumerable: !0, configurable: !0, writable: !0 }) : e[r] = t, e; }
3719
3796
  function _toPropertyKey(t) { var i = _toPrimitive(t, "string"); return "symbol" == typeof i ? i : i + ""; }
3720
3797
  function _toPrimitive(t, r) { if ("object" != typeof t || !t) return t; var e = t[Symbol.toPrimitive]; if (void 0 !== e) { var i = e.call(t, r || "default"); if ("object" != typeof i) return i; throw new TypeError("@@toPrimitive must return a primitive value."); } return ("string" === r ? String : Number)(t); }
@@ -3787,7 +3864,7 @@ class Asset {
3787
3864
  return "data:".concat(contentType, ";base64,").concat(memoizedToString(this.assetId, this.data));
3788
3865
  }
3789
3866
  }
3790
- ;// CONCATENATED MODULE: ./src/DataFormat.ts
3867
+ ;// ./src/DataFormat.ts
3791
3868
  /**
3792
3869
  * Enumeration of the supported data formats.
3793
3870
  * @enum {string}
@@ -3802,7 +3879,7 @@ const DataFormat = {
3802
3879
  SVG: 'svg',
3803
3880
  WAV: 'wav'
3804
3881
  };
3805
- ;// CONCATENATED MODULE: ./src/AssetType.ts
3882
+ ;// ./src/AssetType.ts
3806
3883
 
3807
3884
  /**
3808
3885
  * Enumeration of the supported asset types.
@@ -3846,7 +3923,7 @@ const AssetType = {
3846
3923
  immutable: true
3847
3924
  }
3848
3925
  };
3849
- ;// CONCATENATED MODULE: ./src/Helper.ts
3926
+ ;// ./src/Helper.ts
3850
3927
  function Helper_defineProperty(e, r, t) { return (r = Helper_toPropertyKey(r)) in e ? Object.defineProperty(e, r, { value: t, enumerable: !0, configurable: !0, writable: !0 }) : e[r] = t, e; }
3851
3928
  function Helper_toPropertyKey(t) { var i = Helper_toPrimitive(t, "string"); return "symbol" == typeof i ? i : i + ""; }
3852
3929
  function Helper_toPrimitive(t, r) { if ("object" != typeof t || !t) return t; var e = t[Symbol.toPrimitive]; if (void 0 !== e) { var i = e.call(t, r || "default"); if ("object" != typeof i) return i; throw new TypeError("@@toPrimitive must return a primitive value."); } return ("string" === r ? String : Number)(t); }
@@ -3881,7 +3958,7 @@ var defaultVectorarrayBuffer = __webpack_require__(914);
3881
3958
  var defaultVectorarrayBuffer_default = /*#__PURE__*/__webpack_require__.n(defaultVectorarrayBuffer);
3882
3959
  // EXTERNAL MODULE: ./node_modules/buffer/index.js
3883
3960
  var buffer = __webpack_require__(287);
3884
- ;// CONCATENATED MODULE: ./src/BuiltinHelper.ts
3961
+ ;// ./src/BuiltinHelper.ts
3885
3962
  function BuiltinHelper_defineProperty(e, r, t) { return (r = BuiltinHelper_toPropertyKey(r)) in e ? Object.defineProperty(e, r, { value: t, enumerable: !0, configurable: !0, writable: !0 }) : e[r] = t, e; }
3886
3963
  function BuiltinHelper_toPropertyKey(t) { var i = BuiltinHelper_toPrimitive(t, "string"); return "symbol" == typeof i ? i : i + ""; }
3887
3964
  function BuiltinHelper_toPrimitive(t, r) { if ("object" != typeof t || !t) return t; var e = t[Symbol.toPrimitive]; if (void 0 !== e) { var i = e.call(t, r || "default"); if ("object" != typeof i) return i; throw new TypeError("@@toPrimitive must return a primitive value."); } return ("string" === r ? String : Number)(t); }
@@ -4026,7 +4103,7 @@ class BuiltinHelper extends Helper {
4026
4103
  // EXTERNAL MODULE: ./src/scratchFetch.js
4027
4104
  var scratchFetch = __webpack_require__(953);
4028
4105
  var scratchFetch_default = /*#__PURE__*/__webpack_require__.n(scratchFetch);
4029
- ;// CONCATENATED MODULE: ./src/FetchWorkerTool.ts
4106
+ ;// ./src/FetchWorkerTool.ts
4030
4107
  const _excluded = ["url"];
4031
4108
  function _objectWithoutProperties(e, t) { if (null == e) return {}; var o, r, i = _objectWithoutPropertiesLoose(e, t); if (Object.getOwnPropertySymbols) { var s = Object.getOwnPropertySymbols(e); for (r = 0; r < s.length; r++) o = s[r], t.includes(o) || {}.propertyIsEnumerable.call(e, o) && (i[o] = e[o]); } return i; }
4032
4109
  function _objectWithoutPropertiesLoose(r, e) { if (null == r) return {}; var t = {}; for (var n in r) if ({}.hasOwnProperty.call(r, n)) { if (e.includes(n)) continue; t[n] = r[n]; } return t; }
@@ -4220,7 +4297,7 @@ class PublicFetchWorkerTool {
4220
4297
  throw new Error('Not implemented.');
4221
4298
  }
4222
4299
  }
4223
- ;// CONCATENATED MODULE: ./src/FetchTool.ts
4300
+ ;// ./src/FetchTool.ts
4224
4301
  const FetchTool_excluded = ["url"],
4225
4302
  _excluded2 = ["url", "withCredentials"];
4226
4303
  function FetchTool_objectWithoutProperties(e, t) { if (null == e) return {}; var o, r, i = FetchTool_objectWithoutPropertiesLoose(e, t); if (Object.getOwnPropertySymbols) { var s = Object.getOwnPropertySymbols(e); for (r = 0; r < s.length; r++) o = s[r], t.includes(o) || {}.propertyIsEnumerable.call(e, o) && (i[o] = e[o]); } return i; }
@@ -4286,7 +4363,7 @@ class FetchTool {
4286
4363
  });
4287
4364
  }
4288
4365
  }
4289
- ;// CONCATENATED MODULE: ./src/ProxyTool.ts
4366
+ ;// ./src/ProxyTool.ts
4290
4367
  function ProxyTool_defineProperty(e, r, t) { return (r = ProxyTool_toPropertyKey(r)) in e ? Object.defineProperty(e, r, { value: t, enumerable: !0, configurable: !0, writable: !0 }) : e[r] = t, e; }
4291
4368
  function ProxyTool_toPropertyKey(t) { var i = ProxyTool_toPrimitive(t, "string"); return "symbol" == typeof i ? i : i + ""; }
4292
4369
  function ProxyTool_toPrimitive(t, r) { if ("object" != typeof t || !t) return t; var e = t[Symbol.toPrimitive]; if (void 0 !== e) { var i = e.call(t, r || "default"); if ("object" != typeof i) return i; throw new TypeError("@@toPrimitive must return a primitive value."); } return ("string" === r ? String : Number)(t); }
@@ -4378,7 +4455,7 @@ ProxyTool_defineProperty(ProxyTool, "TOOL_FILTER", {
4378
4455
  */
4379
4456
  READY: 'ready'
4380
4457
  });
4381
- ;// CONCATENATED MODULE: ./src/WebHelper.ts
4458
+ ;// ./src/WebHelper.ts
4382
4459
  function WebHelper_defineProperty(e, r, t) { return (r = WebHelper_toPropertyKey(r)) in e ? Object.defineProperty(e, r, { value: t, enumerable: !0, configurable: !0, writable: !0 }) : e[r] = t, e; }
4383
4460
  function WebHelper_toPropertyKey(t) { var i = WebHelper_toPrimitive(t, "string"); return "symbol" == typeof i ? i : i + ""; }
4384
4461
  function WebHelper_toPrimitive(t, r) { if ("object" != typeof t || !t) return t; var e = t[Symbol.toPrimitive]; if (void 0 !== e) { var i = e.call(t, r || "default"); if ("object" != typeof i) return i; throw new TypeError("@@toPrimitive must return a primitive value."); } return ("string" === r ? String : Number)(t); }
@@ -4546,7 +4623,7 @@ class WebHelper extends Helper {
4546
4623
  });
4547
4624
  }
4548
4625
  }
4549
- ;// CONCATENATED MODULE: ./src/ScratchStorage.ts
4626
+ ;// ./src/ScratchStorage.ts
4550
4627
  function ScratchStorage_defineProperty(e, r, t) { return (r = ScratchStorage_toPropertyKey(r)) in e ? Object.defineProperty(e, r, { value: t, enumerable: !0, configurable: !0, writable: !0 }) : e[r] = t, e; }
4551
4628
  function ScratchStorage_toPropertyKey(t) { var i = ScratchStorage_toPrimitive(t, "string"); return "symbol" == typeof i ? i : i + ""; }
4552
4629
  function ScratchStorage_toPrimitive(t, r) { if ("object" != typeof t || !t) return t; var e = t[Symbol.toPrimitive]; if (void 0 !== e) { var i = e.call(t, r || "default"); if ("object" != typeof i) return i; throw new TypeError("@@toPrimitive must return a primitive value."); } return ("string" === r ? String : Number)(t); }
@@ -4771,7 +4848,7 @@ class ScratchStorage {
4771
4848
  });
4772
4849
  }
4773
4850
  }
4774
- ;// CONCATENATED MODULE: ./src/index.ts
4851
+ ;// ./src/index.ts
4775
4852
 
4776
4853
 
4777
4854