UNPKG

lambda-live-debugger

Version:

Debug Lambda functions locally like it is running in the cloud

8 lines (7 loc) 159 B
import { AbortSignal } from "./AbortSignal"; export class AbortController { signal = new AbortSignal(); abort() { this.signal.abort(); } }