MCPcopy
hub / github.com/firecrawl/firecrawl / child

Method child

apps/api/src/scraper/scrapeURL/lib/abortManager.ts:64–72  ·  view source on GitHub ↗
(...instances: (AbortInstance | undefined | null)[])

Source from the content-addressed store, hash-verified

62 }
63
64 child(...instances: (AbortInstance | undefined | null)[]): AbortManager {
65 const manager = new AbortManager(
66 ...this.aborts,
67 ...(instances.filter(
68 x => x !== undefined && x !== null,
69 ) as AbortInstance[]),
70 );
71 return manager;
72 }
73
74 isAborted(): boolean {
75 return this.aborts.some(x => x.signal.aborted);

Callers 15

crawlMonitorControllerFunction · 0.80
cclogFunction · 0.80
scrapeStatusControllerFunction · 0.80
scrapeInteractControllerFunction · 0.80
scrapeControllerFunction · 0.80
crawlControllerFunction · 0.80
mapControllerFunction · 0.80
browserCreateControllerFunction · 0.80
browserExecuteControllerFunction · 0.80
browserDeleteControllerFunction · 0.80

Calls

no outgoing calls

Tested by 1

buildLoggerFunction · 0.64