aborter
TypeScript icon, indicating that this package has built-in type declarations

3.0.0 • Public • Published

Aborter

A minimal reimplementation of AbortController and AbortSignal.

This library is only 0.5kb minified, but it's not strictly spec-compliant, if you need that go with abort-controller.

Install

npm install --save aborter

Usage

import Aborter from 'aborter';

const aborter = new Aborter ();

console.log ( aborter.signal.aborted ); // => false

aborter.signal.addEventListener ( 'abort', () => {

  console.log ( aborter.signal.aborted ); // => true

});

aborter.abort (); // Aborting, causing event handlers to be triggered and the "aborted" property to be set to "true"

License

MIT © Fabio Spampinato

/aborter/

    Package Sidebar

    Install

    npm i aborter

    Weekly Downloads

    698

    Version

    3.0.0

    License

    none

    Unpacked Size

    6.5 kB

    Total Files

    18

    Last publish

    Collaborators

    • fabiospampinato