MCPcopy Index your code
hub / github.com/node-modules/utility / argumentsToArray

Function argumentsToArray

src/optimize.ts:56–62  ·  view source on GitHub ↗
(args: any[])

Source from the content-addressed store, hash-verified

54 * optimize arguments to array
55 */
56export function argumentsToArray(args: any[]) {
57 const res = new Array(args.length);
58 for (let i = 0; i < args.length; i++) {
59 res[i] = args[i];
60 }
61 return res;
62}

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…