MCPcopy Index your code
hub / github.com/actions/github-script / callAsyncFunction

Function callAsyncFunction

src/async-function.ts:22–28  ·  view source on GitHub ↗
(
  args: AsyncFunctionArguments,
  source: string
)

Source from the content-addressed store, hash-verified

20}
21
22export function callAsyncFunction<T>(
23 args: AsyncFunctionArguments,
24 source: string
25): Promise<T> {
26 const fn = new AsyncFunction(...Object.keys(args), source)
27 return fn(...Object.values(args))
28}

Callers 3

mainFunction · 0.90

Calls

no outgoing calls

Tested by

no test coverage detected