0.5.3 • Published 6 years ago

data-cancel-token v0.5.3

Weekly downloads
7
License
ISC
Repository
github
Last release
6 years ago

Cancel Token

Simple TypeScript/ES2015 class to emulate cancellation tokens. Does not fully comply yet with the proposed specification.

Installation

npm install --save data-cancel-token

Usage

import { CancelToken } from 'data-cancel-token';

const token = new CancelToken();

console.log( token.cancellationRequested );

token.cancellationPromise.then( () => console.log( 'cancelled' ) );

token.throwIfCancellationRequested();

token.cancel();