MCPcopy Index your code
hub / github.com/triggerdotdev/trigger.dev / propsForError

Function propsForError

packages/core/src/v3/apiClient/core.ts:443–446  ·  view source on GitHub ↗
(value: any)

Source from the content-addressed store, hash-verified

441}
442
443function propsForError(value: any): string {
444 const props = Object.getOwnPropertyNames(value);
445 return `[${props.map((p) => `"${p}"`).join(", ")}]`;
446}
447
448const isAsyncIterableIterator = (value: any): value is AsyncIterableIterator<unknown> =>
449 value != null && typeof value === "object" && typeof value[Symbol.asyncIterator] === "function";

Callers 1

getBytesFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…