function abortablePromiseimport { abortablePromise } from "https://dotland.deno.dev/std@0.131.0/async/abortable.ts"; abortablePromise<T>(p: Promise<T>, signal: AbortSignal): Promise<T>Make Promise abortable with the given signal. Make Promise abortable with the given signal. Type ParametersTParametersp: Promise<T>signal: AbortSignalReturnsPromise<T>