instanceOfUnassignedFunction() — typescript-sdk Function Reference
Architecture documentation for the instanceOfUnassignedFunction() function in UnassignedFunction.ts from the typescript-sdk codebase.
Entity Profile
Relationship Graph
Source Code
src/models/UnassignedFunction.ts lines 39–43
export function instanceOfUnassignedFunction(value: object): value is UnassignedFunction {
if (!('functionId' in value) || value['functionId'] === undefined) return false;
if (!('reason' in value) || value['reason'] === undefined) return false;
return true;
}
Domain
Subdomains
Source
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free