UNPKG

@convex-dev/workpool

Version:

A Convex component for managing async work.

9 lines 306 B
import { getFunctionAddress, getFunctionName, } from "convex/server"; export function safeFunctionName(f) { const address = getFunctionAddress(f); return (address.name || address.reference || address.functionHandle || getFunctionName(f)); } //# sourceMappingURL=utils.js.map