An implementation of WHATWG AbortController interface.
import AbortController from "abort-controller"
Â
const controller = new AbortController()
const signal = controller.signal
Â
signal.addEventListener("abort", () => {
    console.log("aborted!")
})
Â
controller.abort()
ð¿ Installation
Use npm to install then use a bundler.
npm install abort-controller
Or download from dist
directory.
import AbortController from "abort-controller"
const AbortController = require("abort-controller")
Â
const AbortController = window.AbortControllerShim
If your bundler recognizes browser
field of package.json
, the imported AbortController
is the native one and it doesn't contain shim (even if the native implementation was nothing). If you wanted to polyfill AbortController
for IE, use abort-controller/polyfill
.
Importing abort-controller/polyfill
assigns the AbortController
shim to the AbortController
global variable if the native implementation was nothing.
API AbortControllerimport "abort-controller/polyfill"
require("abort-controller/polyfill")
controller.signal
The AbortSignal object which is associated to this controller.
controller.abort()Notify abort
event to listeners that the signal
has.
Contributing is welcome â¤ï¸
Please use GitHub issues/PRs.
Development toolsnpm install
installs dependencies for development.npm test
runs tests and measures code coverage.npm run clean
removes temporary files of tests.npm run coverage
opens code coverage of the previous test with your default browser.npm run lint
runs ESLint.npm run build
generates dist
codes.npm run watch
runs tests on each file change.RetroSearch is an open source project built by @garambo | Open a GitHub Issue
Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo
HTML:
3.2
| Encoding:
UTF-8
| Version:
0.7.4