Skip to content

Instantly share code, notes, and snippets.

View LesleyLai's full-sized avatar

Lesley Lai LesleyLai

View GitHub Profile
@danharper
danharper / CancellationTokenSource.js
Last active January 7, 2024 17:58
JavaScript "CancellationToken" for cancelling Async/Promise functions
const CANCEL = Symbol();
class CancellationToken {
constructor() {
this.cancelled = false;
}
throwIfCancelled() {
if (this.isCancelled()) {