@nativescript/core 9.0.21-next.3 → 9.0.21-next.4

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.
Files changed (2) hide show
  1. package/fetch/index.mjs +2 -2
  2. package/package.json +1 -1
package/fetch/index.mjs CHANGED
@@ -459,7 +459,7 @@ try {
459
459
  var request = new Request(input, init);
460
460
 
461
461
  if (request.signal && request.signal.aborted) {
462
- return reject(new exports.DOMException("Aborted", "AbortError"));
462
+ return reject(new DOMException("Aborted", "AbortError"));
463
463
  }
464
464
 
465
465
  var xhr = new XMLHttpRequest();
@@ -491,7 +491,7 @@ try {
491
491
  };
492
492
 
493
493
  xhr.onabort = function () {
494
- reject(new exports.DOMException("Aborted", "AbortError"));
494
+ reject(new DOMException("Aborted", "AbortError"));
495
495
  };
496
496
 
497
497
  xhr.open(request.method, request.url, true);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nativescript/core",
3
- "version": "9.0.21-next.3",
3
+ "version": "9.0.21-next.4",
4
4
  "description": "A JavaScript library providing an easy to use api for interacting with iOS and Android platform APIs.",
5
5
  "type": "module",
6
6
  "main": "index",