@fatcherjs/middleware-aborter 3.0.0-alpha-6 → 3.0.0-alpha-7

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/index.esm.js CHANGED
@@ -1,5 +1,3 @@
1
- import 'fatcher';
2
-
3
1
  function isAbortError(error) {
4
2
  return error instanceof DOMException && error.name === "AbortError";
5
3
  }
package/dist/index.js CHANGED
@@ -2,8 +2,6 @@
2
2
 
3
3
  Object.defineProperty(exports, '__esModule', { value: true });
4
4
 
5
- require('fatcher');
6
-
7
5
  function isAbortError(error) {
8
6
  return error instanceof DOMException && error.name === "AbortError";
9
7
  }
package/package.json CHANGED
@@ -13,12 +13,12 @@
13
13
  "dist"
14
14
  ],
15
15
  "peerDependencies": {
16
- "fatcher": "3.0.0-alpha-6"
16
+ "fatcher": "3.0.0-alpha-7"
17
17
  },
18
18
  "devDependencies": {
19
- "fatcher": "3.0.0-alpha-6"
19
+ "fatcher": "3.0.0-alpha-7"
20
20
  },
21
- "version": "3.0.0-alpha-6",
21
+ "version": "3.0.0-alpha-7",
22
22
  "scripts": {
23
23
  "clean": "rimraf dist",
24
24
  "build": "npm run clean && rollup -c rollup.config.ts",