UNPKG

lambda-live-debugger

Version:

Debug Lambda functions locally like it is running in the cloud

10 lines (9 loc) 194 B
import { AbortSignal } from "./AbortSignal"; export class AbortController { constructor() { this.signal = new AbortSignal(); } abort() { this.signal.abort(); } }