MCPcopy
hub / github.com/CopyTranslator/CopyTranslator / isPromise

Function isPromise

src/proxy/helper.ts:1–7  ·  view source on GitHub ↗
(obj: any)

Source from the content-addressed store, hash-verified

1export function isPromise(obj: any) {
2 return (
3 !!obj &&
4 (typeof obj === "object" || typeof obj === "function") &&
5 typeof obj.then === "function"
6 );
7}

Callers 1

startServiceFunction · 0.90

Calls

no outgoing calls

Tested by

no test coverage detected