@jcoreio/abortable
Advanced tools
Comparing version
@@ -35,3 +35,2 @@ "use strict"; | ||
}; | ||
signal.addEventListener('abort', onAbort); | ||
promise.then(function (value) { | ||
@@ -44,3 +43,4 @@ return cleanup().resolve(value); | ||
reject(newAbortError()); | ||
return; | ||
} else { | ||
signal.addEventListener('abort', onAbort); | ||
} | ||
@@ -47,0 +47,0 @@ }); |
@@ -20,3 +20,3 @@ { | ||
], | ||
"version": "1.0.1", | ||
"version": "1.0.2", | ||
"sideEffects": false, | ||
@@ -23,0 +23,0 @@ "engines": { |
@@ -27,3 +27,3 @@ export const newAbortError = () => | ||
const onAbort = () => cleanup().reject(newAbortError()) | ||
signal.addEventListener('abort', onAbort) | ||
promise.then( | ||
@@ -35,5 +35,6 @@ (value) => cleanup().resolve(value), | ||
reject(newAbortError()) | ||
return | ||
} else { | ||
signal.addEventListener('abort', onAbort) | ||
} | ||
}) | ||
} |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
13025
0.25%